Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 40

Thread: SQL Server 2008

  1. #21
    C.I.A. wire's Avatar
    Join Date
    Sep 2008
    Gender
    Male
    Posts
    3,380
    Blog Entries
    3

    Default Re: SQL Server 2008


    ...actually, I've done that before, usually, useful kaaU ni during recovery mode sa 2005.


    Quote Originally Posted by Deadstring67 View Post
    thanks bro..

    di man gud kaau lisod if sql 2005 e upgrade nimo to 2008..
    ang 2008 to 2005 baling labara sa ulo..
    E make sure dili nimo e apil ang data inig himo sa script..pilia ra ang Schema. grabeng bug ata nya mag error.

  2. #22

    Default Re: SQL Server 2008

    Quote Originally Posted by nailv View Post
    ngano ni purchase man ug SQL 2008 nga e downgrade ra man diay sa 2005? Mora nag Windows 2008 e downgrade sa 2003... hehe

    DBA diay ka camz.. dli ka system engr. hehe
    Part na sa ako trabaho as SE.
    Last edited by Deadstring67; 03-28-2012 at 07:09 PM.

  3. #23

    Default Re: SQL Server 2008

    Quote Originally Posted by wire View Post
    ...actually, I've done that before, usually, useful kaaU ni during recovery mode sa 2005.
    nice bro. sauna ra ka naka try ani. ako lately lang. naka try naka og SQL Azure?

  4. #24

    Default Re: SQL Server 2008

    Creating a PDF from a Stored Procedure

    This article explains how to create a a stored procedure that will in turn create a simple column based report in PDF without using any external tools or libraries (and their associated licensing costs!).

    SQL2PDF makes a PDF report from text inserted in the table psopdf ( nvarchar(80) ). First a table named psopdf should be created.
    ------------------------------------------------------------------------------------------------------------
    ------------------------------------------------------------------------------------------------------------
    ------------------------------------------------------------------------------------------------------------
    *****DO THIS FIRST TO ENABLE OLE AUTOMATION PROCEDURES AND xp_cmdshell*****

    --The following example shows how to view the current setting of OLE Automation procedures.

    EXEC sp_configure 'Ole Automation Procedures';
    GO

    --------------------------------------------------------------------------------------------
    --The following example shows how to enable OLE Automation procedures.

    sp_configure 'show advanced options', 1;
    GO
    RECONFIGURE;
    GO
    sp_configure 'Ole Automation Procedures', 1;
    GO
    RECONFIGURE;
    GO

    --------------------------------------------------------------------------------------------
    -- To allow advanced options to be changed.
    EXEC sp_configure 'show advanced options', 1
    GO
    -- To update the currently configured value for advanced options.
    RECONFIGURE
    GO
    -- To enable the feature.
    EXEC sp_configure 'xp_cmdshell', 1
    GO
    -- To update the currently configured value for this feature.
    RECONFIGURE
    GO

    ------------------------------------------------------------------------------------------------------------
    ------------------------------------------------------------------------------------------------------------
    ------------------------------------------------------------------------------------------------------------

    CREATE TABLE psopdf (code NVARCHAR(80))
    After that create the stored procedure SQL2PDF.

    CREATE PROCEDURE sql2pdf
    @filename VARCHAR(100)
    AS
    CREATE TABLE #pdf (idnumber INT IDENTITY(1,1)
    ,code NVARCHAR(200))
    CREATE TABLE #xref (idnumber INT IDENTITY(1,1)
    ,code VARCHAR(30))
    CREATE TABLE #text (idnumber INT IDENTITY(1,1)
    ,code VARCHAR(200))

    DECLARE @end VARCHAR(7),
    @beg VARCHAR(7),
    @a1 VARCHAR(3),
    @a2 VARCHAR(3),
    @ad VARCHAR(5),
    @cr VARCHAR(,
    @pr VARCHAR(9),
    @ti VARCHAR(6),
    @xstr VARCHAR(10),
    @page VARCHAR(8000),
    @pdf VARCHAR(100),
    @trenutniRed NVARCHAR(200),
    @rows INT,
    @ofset INT,
    @len INT,
    @nopg INT,
    @fs INT,
    @ole INT,
    @x INT,
    @file INT,
    @object INT
    SELECT @pdf = 'C:\downloads\' + @filename + '.pdf'
    SET @page = ''
    SET @nopg = 0
    SET @object = 6
    SET @end = 'endobj'
    SET @beg = ' 0 obj'
    SET @a1 = '<<'
    SET @a2 = '>>'
    SET @ad = ' 0 R'
    SET @cr = CHAR(67) + CHAR(114) + CHAR (101) + CHAR(97) + CHAR(116) + CHAR (111) + CHAR(114)
    SET @pr = CHAR(80) + CHAR(114) + CHAR (111) + CHAR(100) + CHAR(117) + CHAR (99 ) + CHAR(101) + CHAR(114)
    SET @ti = CHAR(84) + CHAR(105) + CHAR (116) + CHAR(10 + CHAR(101)
    SET @xstr = ' 00000 n'
    SET @ofset = 396
    INSERT INTO #xref(code) VALUES ('xref')
    INSERT INTO #xref(code) VALUES ('0 10')
    INSERT INTO #xref(code) VALUES ('0000000000 65535 f')
    INSERT INTO #xref(code) VALUES ('0000000017' + @xstr)
    INSERT INTO #xref(code) VALUES ('0000000790' + @xstr)
    INSERT INTO #xref(code) VALUES ('0000000869' + @xstr)
    INSERT INTO #xref(code) VALUES ('0000000144' + @xstr)
    INSERT INTO #xref(code) VALUES ('0000000247' + @xstr)
    INSERT INTO #xref(code) VALUES ('0000000321' + @xstr)
    INSERT INTO #xref(code) VALUES ('0000000396' + @xstr)
    INSERT INTO #pdf (code) VALUES ('%' + CHAR(80) + CHAR(6 + CHAR (70) + '-1.2')
    INSERT INTO #pdf (code) VALUES ('%ΣΣΣΣ')
    INSERT INTO #pdf (code) VALUES ('1' + @beg)
    INSERT INTO #pdf (code) VALUES (@a1)
    INSERT INTO #pdf (code) VALUES ('/' + @cr + ' (Ivica Masar ' + CHAR(80) + CHAR(83) + CHAR (79) + CHAR(80) + CHAR(6 + CHAR (70) + ')')
    INSERT INTO #pdf (code) VALUES ('/' + @pr + ' (stored procedure for ms sql pso@vip.hr)')
    INSERT INTO #pdf (code) VALUES ('/' + @ti + ' (SQL2' + CHAR(80) + CHAR(6 + CHAR (70) + ')')
    INSERT INTO #pdf (code) VALUES (@a2)
    INSERT INTO #pdf (code) VALUES (@end)
    INSERT INTO #pdf (code) VALUES ('4' + @beg)
    INSERT INTO #pdf (code) VALUES (@a1)
    INSERT INTO #pdf (code) VALUES ('/Type /Font')
    INSERT INTO #pdf (code) VALUES ('/Subtype /Type1')
    INSERT INTO #pdf (code) VALUES ('/Name /F1')
    INSERT INTO #pdf (code) VALUES ('/Encoding 5' + @ad)
    INSERT INTO #pdf (code) VALUES ('/BaseFont /Courier')
    INSERT INTO #pdf (code) VALUES (@a2)
    INSERT INTO #pdf (code) VALUES (@end)
    INSERT INTO #pdf (code) VALUES ('5' + @beg)
    INSERT INTO #pdf (code) VALUES (@a1)
    INSERT INTO #pdf (code) VALUES ('/Type /Encoding')
    INSERT INTO #pdf (code) VALUES ('/BaseEncoding /WinAnsiEncoding')
    INSERT INTO #pdf (code) VALUES (@a2)
    INSERT INTO #pdf (code) VALUES (@end)
    INSERT INTO #pdf (code) VALUES ('6' + @beg)
    INSERT INTO #pdf (code) VALUES (@a1)
    INSERT INTO #pdf (code) VALUES (' /Font ' + @a1 + ' /F1 4' + @ad + ' ' + @a2 + ' /ProcSet [ /' + CHAR(80) + CHAR(6 + CHAR (70) + ' /Text ]')
    INSERT INTO #pdf (code) VALUES (@a2)
    INSERT INTO #pdf (code) VALUES (@end)
    INSERT INTO #text(code) (SELECT code FROM psopdf)
    SELECT @x = COUNT(*) FROM #text
    SELECT @x = (@x / 60) + 1
    WHILE @nopg < @x
    BEGIN
    DECLARE SysKursor INSENSITIVE SCROLL CURSOR
    FOR SELECT SUBSTRING((code + SPACE(81)), 1, 80) FROM #text WHERE idnumber BETWEEN ((@nopg * 60) + 1) AND ((@nopg + 1) * 60 )
    FOR READ ONLY \\
    OPEN SysKursor
    FETCH NEXT FROM SysKursor INTO @trenutniRed
    SELECT @object = @object + 1
    SELECT @page = @page + ' ' + CAST(@object AS VARCHAR) + @ad
    SELECT @len = LEN(@object) + LEN(@object + 1)
    INSERT INTO #pdf (code) VALUES (CAST(@object AS VARCHAR) + @beg)
    INSERT INTO #pdf (code) VALUES (@a1)
    INSERT INTO #pdf (code) VALUES ('/Type /Page')
    INSERT INTO #pdf (code) VALUES ('/Parent 3' + @ad)
    INSERT INTO #pdf (code) VALUES ('/Resources 6' + @ad)
    SELECT @object = @object + 1
    INSERT INTO #pdf (code) VALUES ('/Contents ' + CAST(@object AS VARCHAR) + @ad)
    INSERT INTO #pdf (code) VALUES (@a2)
    INSERT INTO #pdf (code) VALUES (@end)
    SELECT @ofset = @len + 86 + @ofset
    INSERT INTO #xref(code) (SELECT SUBSTRING('0000000000' + CAST(@ofset AS VARCHAR),
    LEN('0000000000' + CAST(@ofset AS VARCHAR)) - 9,
    LEN('0000000000' + CAST(@ofset AS VARCHAR))) + @xstr)
    INSERT INTO #pdf (code) VALUES (CAST(@object AS VARCHAR) + @beg)
    INSERT INTO #pdf (code) VALUES (@a1)
    SELECT @object = @object + 1
    INSERT INTO #pdf (code) VALUES ('/Length ' + CAST(@object AS VARCHAR) + @ad)
    INSERT INTO #pdf (code) VALUES (@a2)
    INSERT INTO #pdf (code) VALUES ('stream')
    INSERT INTO #pdf (code) VALUES ('BT')
    INSERT INTO #pdf (code) VALUES ('/F1 10 Tf')
    INSERT INTO #pdf (code) VALUES ('1 0 0 1 50 802 Tm')
    INSERT INTO #pdf (code) VALUES ('12 TL')
    WHILE @@Fetch_Status = 0
    BEGIN
    INSERT INTO #pdf (code) VALUES ('T* (' + @trenutniRed + ') Tj')
    FETCH NEXT FROM SysKursor INTO @trenutniRed
    END
    INSERT INTO #pdf (code) VALUES ('ET')
    INSERT INTO #pdf (code) VALUES ('endstream')
    INSERT INTO #pdf (code) VALUES (@end)
    SELECT @rows = (SELECT COUNT(*) FROM #text WHERE idnumber BETWEEN ((@nopg * 60) + 1) AND ((@nopg + 1) * 60 ))* 90 + 45
    SELECT @nopg = @nopg + 1
    SELECT @len = LEN(@object) + LEN(@object - 1)
    SELECT @ofset = @len + 57 + @ofset + @rows
    INSERT INTO #xref(code) (SELECT SUBSTRING('0000000000' + CAST(@ofset AS VARCHAR),
    LEN('0000000000' + CAST(@ofset AS VARCHAR)) - 9,
    LEN('0000000000' + CAST(@ofset AS VARCHAR))) + @xstr)
    INSERT INTO #pdf (code) VALUES (CAST(@object AS VARCHAR) + @beg)
    INSERT INTO #pdf (code) VALUES (@rows)
    INSERT INTO #pdf (code) VALUES (@end)
    SELECT @len = LEN(@object) + LEN(@rows)
    SELECT @ofset = @len + 18 + @ofset
    INSERT INTO #xref(code) (SELECT SUBSTRING('0000000000' + CAST(@ofset AS VARCHAR),
    LEN('0000000000' + CAST(@ofset AS VARCHAR)) - 9,
    LEN('0000000000' + CAST(@ofset AS VARCHAR))) + @xstr)
    CLOSE SysKursor
    DEALLOCATE SysKursor
    END
    INSERT INTO #pdf (code) VALUES ('2' + @beg)
    INSERT INTO #pdf (code) VALUES (@a1)
    INSERT INTO #pdf (code) VALUES ('/Type /Catalog')
    INSERT INTO #pdf (code) VALUES ('/Pages 3' + @ad)
    INSERT INTO #pdf (code) VALUES ('/PageLayout /OneColumn')
    INSERT INTO #pdf (code) VALUES (@a2)
    INSERT INTO #pdf (code) VALUES (@end)
    UPDATE #xref SET code = (SELECT code FROM #xref WHERE idnumber = (SELECT MAX(idnumber) FROM #xref)) WHERE idnumber = 5
    DELETE FROM #xref WHERE idnumber = (SELECT MAX(idnumber) FROM #xref)
    INSERT INTO #pdf (code) VALUES ('3' + @beg)
    INSERT INTO #pdf (code) VALUES (@a1)
    INSERT INTO #pdf (code) VALUES ('/Type /Pages')
    INSERT INTO #pdf (code) VALUES ('/Count ' + CAST(@nopg AS VARCHAR))
    INSERT INTO #pdf (code) VALUES ('/MediaBox [ 0 0 595 842 ]')
    INSERT INTO #pdf (code) VALUES ('/Kids [' + @page + ' ]')
    INSERT INTO #pdf (code) VALUES (@a2)
    INSERT INTO #pdf (code) VALUES (@end)
    SELECT @ofset = @ofset + 79
    UPDATE #xref SET code =(SELECT SUBSTRING('0000000000' + CAST(@ofset AS VARCHAR),
    LEN('0000000000' + CAST(@ofset AS VARCHAR)) - 9,
    LEN('0000000000' + CAST(@ofset AS VARCHAR))) + @xstr) WHERE idnumber = 6
    INSERT INTO #xref(code) VALUES ('trailer')
    INSERT INTO #xref(code) VALUES (@a1)
    SELECT @object = @object + 1
    UPDATE #xref SET code = '0 ' + CAST(@object AS VARCHAR) WHERE idnumber = 2
    INSERT INTO #xref(code) VALUES ('/Size ' + CAST(@object AS VARCHAR))
    INSERT INTO #xref(code) VALUES ('/Root 2' + @ad)
    INSERT INTO #xref(code) VALUES ('/Info 1' + @ad)
    INSERT INTO #xref(code) VALUES (@a2)
    INSERT INTO #xref(code) VALUES ('startxref')
    SELECT @len = LEN(@nopg) + LEN(@page)
    SELECT @ofset = @len + 86 + @ofset
    INSERT INTO #xref(code) VALUES (@ofset)
    INSERT INTO #xref(code) VALUES ('%%' + CHAR(69) + CHAR (79) + CHAR(70))
    INSERT INTO #pdf (code) (SELECT code FROM #xref)
    --SELECT code FROM #pdf
    SELECT @trenutniRed = 'del '+ @pdf
    EXECUTE @ole = sp_OACreate 'Scripting.FileSystemObject', @fs OUT
    EXEC master..xp_cmdshell @trenutniRed, NO_OUTPUT

    EXECUTE @ole = sp_OAMethod @fs, 'OpenTextFile', @file OUT, @pdf, 8, 1

    DECLARE SysKursor INSENSITIVE SCROLL CURSOR
    FOR SELECT code FROM #pdf ORDER BY idnumber
    FOR READ ONLY
    OPEN SysKursor
    FETCH NEXT FROM SysKursor INTO @trenutniRed
    WHILE @@Fetch_Status = 0
    BEGIN
    EXECUTE @ole = sp_OAMethod @file, 'WriteLine', Null, @trenutniRed
    FETCH NEXT FROM SysKursor INTO @trenutniRed
    END
    CLOSE SysKursor
    DEALLOCATE SysKursor
    DELETE FROM psopdf
    EXECUTE @ole = sp_OADestroy @file
    EXECUTE @ole = sp_OADestroy @fs
    And table psopdf has to be filled with your data as shown in examples below.
    At the end the stored procedure is called using the file name only (not extension).

    EXEC sql2pdf 'fileName' EX: tEST
    The result is in your C:\downloads\TEST.pdf

    --------------------------------------------------------------------------------------------------------------------
    EXAMPLE 1:

    INSERT psopdf(code) SELECT SPACE(60) + 'COMPANY LTD'
    INSERT psopdf(code) SELECT SPACE(60) + 'COMPANY ADDRESS'
    INSERT psopdf(code) SELECT SPACE(60) + 'STREET NAME & No'
    INSERT psopdf(code) SELECT ' '
    INSERT psopdf(code) SELECT SPACE(34) + 'BILL OF SALE'
    INSERT psopdf(code) SELECT ' '
    INSERT psopdf(code) SELECT 'Product' + SPACE(10) + 'Quantity'
    + SPACE(10) + 'Price' + SPACE(10) + 'Total'
    INSERT psopdf(code) SELECT REPLACE(SPACE(56), ' ', '_')
    INSERT psopdf(code) SELECT 'Product1' + SPACE(9) + '10.00 '
    + SPACE(10) + '52.30' + SPACE(10) + '5230.0'
    INSERT psopdf(code) SELECT 'Product2' + SPACE(9) + '2.00 '
    + SPACE(10) + '10.00' + SPACE(10) + ' 20.0'
    INSERT psopdf(code) SELECT REPLACE(SPACE(56), ' ', '_')
    INSERT psopdf(code) SELECT SPACE(50) + '5250.0'
    After INSERT call the stored procedure with file name demo2.

    EXEC sql2pdf 'demo2'
    The result is in your C:\downloads\demo2.pdf




    --------------------------------------------------------------------------------------------------------------------

    EXAMPLE 2:
    Second example uses a database pubs.

    USE pubs
    INSERT psopdf(code) SELECT t1.au_lname + ' ' + t1.au_fname + ' ' + t1.phone
    +
    ' ' + t1.address + ' ' + t1.city + ' ' + t1.state + ' ' + t1.zip FROM
    authors t1, authors t2
    After INSERT call the stored procedure with file name demo1.

    EXEC sql2pdf 'demo1'
    The result is in your C:\downloads\demo1.pdf


  5. #25
    C.I.A. wire's Avatar
    Join Date
    Sep 2008
    Gender
    Male
    Posts
    3,380
    Blog Entries
    3

    Default Re: SQL Server 2008

    nice bro... ....

  6. #26
    C.I.A. wire's Avatar
    Join Date
    Sep 2008
    Gender
    Male
    Posts
    3,380
    Blog Entries
    3

    Default Re: SQL Server 2008

    ...Opensource na ang imong plugin bro sa that would convert into PDF kung we do reporting sa mga data sa SQL?

    ...I used to wrote codes from SQL too. Usually I've done it in a stored procedure arun easier and dali ra sad nato ma integrate. Now, my Norwegian Clients and Australian Clients dali ra nko pag implement sa mga upcoming projects.

    ...That's nice bro... keep it up... Pero karon pko ani imong PDF converter...


    Quote Originally Posted by Deadstring67 View Post
    Creating a PDF from a Stored Procedure

    This article explains how to create a a stored procedure that will in turn create a simple column based report in PDF without using any external tools or libraries (and their associated licensing costs!).

    SQL2PDF makes a PDF report from text inserted in the table psopdf ( nvarchar(80) ). First a table named psopdf should be created.
    ------------------------------------------------------------------------------------------------------------
    ------------------------------------------------------------------------------------------------------------
    ------------------------------------------------------------------------------------------------------------
    *****DO THIS FIRST TO ENABLE OLE AUTOMATION PROCEDURES AND xp_cmdshell*****

    --The following example shows how to view the current setting of OLE Automation procedures.

    EXEC sp_configure 'Ole Automation Procedures';
    GO

    --------------------------------------------------------------------------------------------
    --The following example shows how to enable OLE Automation procedures.

    sp_configure 'show advanced options', 1;
    GO
    RECONFIGURE;
    GO
    sp_configure 'Ole Automation Procedures', 1;
    GO
    RECONFIGURE;
    GO

    --------------------------------------------------------------------------------------------
    -- To allow advanced options to be changed.
    EXEC sp_configure 'show advanced options', 1
    GO
    -- To update the currently configured value for advanced options.
    RECONFIGURE
    GO
    -- To enable the feature.
    EXEC sp_configure 'xp_cmdshell', 1
    GO
    -- To update the currently configured value for this feature.
    RECONFIGURE
    GO

    ------------------------------------------------------------------------------------------------------------
    ------------------------------------------------------------------------------------------------------------
    ------------------------------------------------------------------------------------------------------------



    After that create the stored procedure SQL2PDF.



    And table psopdf has to be filled with your data as shown in examples below.
    At the end the stored procedure is called using the file name only (not extension).



    The result is in your C:\downloads\TEST.pdf

    --------------------------------------------------------------------------------------------------------------------
    EXAMPLE 1:



    After INSERT call the stored procedure with file name demo2.



    The result is in your C:\downloads\demo2.pdf




    --------------------------------------------------------------------------------------------------------------------

    EXAMPLE 2:
    Second example uses a database pubs.



    After INSERT call the stored procedure with file name demo1.



    The result is in your C:\downloads\demo1.pdf


  7. #27

    Default Re: SQL Server 2008

    free ra na bro... e enable ang OLE AUTOMATION PROCEDURES og xp_cmdshell human padagana dayon ang create table og kato stored proc.

    naa naka code mo generate og excel? attach sa email. naa ko 2 ka sql script unsaon pag generate og excel file. if wala ka ako e post diri...

    sauna kay mostly naka excel man ang report ako himoon.then pag balhin nako diri kay dili man mahimo og mag excel kay naa man template. naa sad mga graph og formula.ako ge buhat karon diri kay generate og report pero wla na naka excel file . naka table na cya kay sauna limited ra man ang nvarchar(900).karon naa naman nvarchar(max) sa 2008.di na ma putol ako report. d na sad ko ma hasol generate og excel then save sa directory nya e attach dayon sa email. If you want tagaan tika sample.

    share pud nya bro unsa na imo gepang himo. As of now, ako ge balik tuon ang SQL Reporting Services. 4 years nako la ka gamit. kalimot nako.

    Quote Originally Posted by wire View Post
    ...Opensource na ang imong plugin bro sa that would convert into PDF kung we do reporting sa mga data sa SQL?

    ...I used to wrote codes from SQL too. Usually I've done it in a stored procedure arun easier and dali ra sad nato ma integrate. Now, my Norwegian Clients and Australian Clients dali ra nko pag implement sa mga upcoming projects.

    ...That's nice bro... keep it up... Pero karon pko ani imong PDF converter...
    Last edited by Deadstring67; 03-15-2012 at 05:44 PM.

  8. #28

    Default Re: SQL Server 2008

    nindot ni dri dah...

  9. #29

    Default Re: SQL Server 2008

    ako nya e post dri ang "Writing to Word Document from SQL Server".. ma search ra man nuon sa net. pero la pa nako na try og himo. ako sa ni practisan usa nako e post.

  10. #30

    Default Re: SQL Server 2008

    CHECK WITH WORLDTECH

    THEY HAVE SQL 2008 R2 ADMINISTRATION THIS COMING MARCH 26 TO 30, AND ICND2 WITH WINDOWS 2008 SERVER R2

    JUST EMAIL *********************************@gmail.com or call 4120969 website Worldtech Information Solutions

  11.    Advertisement

Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

 
  1. MS SQL SERVER 2008 INSTALLATION - Need Help
    By rjraymund in forum Campus Talk
    Replies: 0
    Last Post: 06-19-2013, 05:27 AM
  2. Ms sql server 2008
    By Burn Out in forum Networking & Internet
    Replies: 13
    Last Post: 02-15-2013, 10:31 AM
  3. SQL Server 2008 book
    By higanstolsdawen in forum Windows Software
    Replies: 1
    Last Post: 06-01-2011, 11:18 AM
  4. Visual Basic.NET 2008, MS SQL Server 2005 training ang seminar
    By tsina in forum Networking & Internet
    Replies: 0
    Last Post: 05-19-2010, 09:54 AM
  5. HOW TO CONNECT SQL SERVER USING SQL AUTHENTICATION
    By edshark in forum Software & Games (Old)
    Replies: 13
    Last Post: 09-02-2005, 04:53 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
about us
We are the first Cebu Online Media.

iSTORYA.NET is Cebu's Biggest, Southern Philippines' Most Active, and the Philippines' Strongest Online Community!
follow us
#top