Viewing 15 posts - 50,056 through 50,070 (of 59,078 total)
montgomery johnson (6/13/2008)
June 13, 2008 at 10:38 am
dbishop (6/13/2008)
June 13, 2008 at 10:26 am
Chris.Strolia-Davis (6/13/2008)
begin
select top 1 'do something', @id=id from @table
delete from @table where id=@id
...
June 13, 2008 at 10:22 am
dugsmith (6/13/2008)
thereby not having to wait for the cursor to be deallocated to release its locks.
"Firehose" cursors do not keep the same types of locks... in fact, they're pretty much...
June 13, 2008 at 10:06 am
abhay.kulkarni (6/13/2008)
Creating a table variable is in the memory, not in the tempdb and hence much more efficient.
Absolutely NOT true... please see Q4/A4 in the following URL. In fact,...
June 13, 2008 at 9:50 am
Michael Earl (6/12/2008)
OpenQuery will allow you to do this.
Do you have example code of how to use OpenQuery to export to a CSV File?
June 12, 2008 at 9:13 pm
Why not use "Get External Data"? Much easier... look it up in Excel Help.
June 12, 2008 at 9:09 pm
8.0
5
1 SQLCHAR 0 8 "|" ...
June 12, 2008 at 9:06 pm
Heh... I'd have to say just about never... with the exception of RegEx, there's not much that can't be done using some form of set based programming in SQL Server...
June 12, 2008 at 8:17 pm
Try calling the following function from within the trigger. You would pass the name of the table to @TableName and the value of COLUMNS_UPDATED ( ) to @BinaryColNums. ...
June 12, 2008 at 8:11 pm
Tech_Newbie (6/12/2008)
I have the following situation:
I want to populate two related tables
Person (PersonID, PersonName, PersonLName)
PersonAddress(PersonAddressID, PersonID, PersonAddr, PersonCity, PersonState, PersonZip, County)
from a table which contains all the data...
June 12, 2008 at 7:34 pm
Like I said on the other article discussion, this isn't the right place and you haven't told us what version of SQL Server you are using... take a look at...
June 12, 2008 at 7:32 pm
This is probably the wrong place to ask for such help... and we'd really need to know which version of SQL Server you're using. It would probably be better...
June 12, 2008 at 7:29 pm
jananik (6/5/2008)
While trying to retrieve records with a max query it takes around 4 minutes (appr. 20 lakh records)
That's 2,000,000 rows that you're returning to the screen... don't measure how...
June 12, 2008 at 7:21 pm
Viewing 15 posts - 50,056 through 50,070 (of 59,078 total)