Viewing 15 posts - 121 through 135 (of 369 total)
Jeffrey Williams (5/7/2009)
May 7, 2009 at 10:14 am
Jack Corbett (5/5/2009)
Jeffrey Williams (5/4/2009)
May 5, 2009 at 7:44 am
Yes, linked reports have a problem. See the following two threads on methods to get around the problem and correct it.
http://www.sqlservercentral.com/Forums/FindPost661300.aspx
http://www.sqlservercentral.com/Forums/FindPost661381.aspx
We now set the page size properties when we...
May 5, 2009 at 7:37 am
Lynn Pettis (5/4/2009)
Let's remember one crucial thing SQL Server Oracle.
Let's stop complaining about the differences...
May 4, 2009 at 8:36 am
Jeff Moden (4/29/2009)
JohnG (4/29/2009)
May 4, 2009 at 8:03 am
peter (5/4/2009)
JohnG (5/1/2009)In SQL Server have you ever wanted to conditionally consume (e.g., loop through) the result set returned by a stored procedure? For example, the output returned by...
May 4, 2009 at 6:47 am
If you do create a TALLY table, for whatever purpose, in Oracle my recommendations are:
1. Create it as an Indexed Organized Table (IOT) using the ORGANIZATION INDEX clause. This...
May 1, 2009 at 10:31 am
Or even a PowerShell script to iterate through the list of databases and run the T-SQL script using SQLCMD. See:
May 1, 2009 at 9:59 am
Use a batch script at a console prompt running SQLCMD against each database. You can put the names of the databases in a text file. That is how...
May 1, 2009 at 9:53 am
RBarryYoung (4/30/2009)
JohnG (4/30/2009)
...To return a record set from Oracle to ADO.Net you use "REF" cursors. The method that SQL Server uses (firehose output) is not ANSI compliant. ...
Could...
May 1, 2009 at 7:48 am
I could create what's called a nested table (a one-dimensional collection) and use that in an inner-join where the inventory Coil Id equals the nested table's coil id, but Oracle...
April 30, 2009 at 2:32 pm
I have written "portable" stored procedures for both SQL Server and Oracle used by a .Net application.
To return a record set from Oracle to ADO.Net you use "REF" cursors. ...
April 30, 2009 at 12:26 pm
rboggess (4/29/2009)
April 29, 2009 at 2:45 pm
Chirag (4/22/2009)
You can use OPENXML to parse the xml and store it into the table.
Don't use OPENXML! Use XQuery. See the following SQL ServerCentral article:
April 23, 2009 at 7:44 am
Viewing 15 posts - 121 through 135 (of 369 total)