Viewing 15 posts - 1,471 through 1,485 (of 6,486 total)
While you certain can use BCP - depending on where the folder happens to be, you end up having to get messy with user security. For that reason -...
March 2, 2010 at 9:40 am
Try:
CAST (o.[data] AS XML).value ('(/Operation/Initiator/@dn)[1]', 'nvarchar(255)') AS xmlChangeHistory
February 25, 2010 at 11:50 am
Create a table variable or temp table, and output into it.
declare table @outputtbl(alarm_account int);
update ACS set ACS.Contract_Start_Date = zzp.start
...
February 24, 2010 at 7:05 pm
CirquedeSQLeil (2/24/2010)
Elliott W (2/24/2010)
I think a fundamental problem with many dev and test environments is limited data, prod data may not belong, but...
February 24, 2010 at 2:35 pm
Sorry to say - but no. It's baked into the UPDATE (it's actually described, albeit badly in the BOL entry about UPDATE).
If you have any ability to add a...
February 24, 2010 at 2:03 pm
It sounds to me that table1 and table2 have a 1 to many relation. In other words - the "left" side of the join is providing 346 rows, and...
February 24, 2010 at 11:37 am
Simply replacing the cursor with another looping process will tend to not give you any gain at all. While you will hear "don't use cursors" commonly as a mantra...
February 24, 2010 at 7:58 am
- You could batch them into a single XML document and process that inside SQL using SQLXML.
- you could look at using SQL Service Broker. One of the...
February 23, 2010 at 3:48 pm
It actually sounds like standard Secure Computing/administration requirements. It's back to the age-old observation that the #1 way to get elevation of privilege attacks is to try to "hijack"...
February 23, 2010 at 11:41 am
Is it really necessary to do row-by-row inserts? You're killing performance that way. If it were possible to do this set-based you'd be inserting multiple times what you're...
February 22, 2010 at 7:22 pm
WayneS (2/22/2010)
February 22, 2010 at 2:40 pm
Ray K (2/22/2010)
February 22, 2010 at 1:49 pm
Greg Snidow (2/22/2010)
February 22, 2010 at 12:52 pm
Greg Snidow (2/22/2010)
February 22, 2010 at 11:45 am
GSquared (2/22/2010)
James Goodwin (2/22/2010)
Why is everyone using CASE WHEN (number % 5)=0 And (number % 3)=0, instead of CASE WHEN (number %15) = 0?
I want...
February 22, 2010 at 10:57 am
Viewing 15 posts - 1,471 through 1,485 (of 6,486 total)