Viewing 15 posts - 106 through 120 (of 372 total)
Tom,
Can you post the XML as an attachment?
Without seeing what you're looking for, take a look at examples that use FOR XML PATH instead of FOR XML AUTO. ...
August 20, 2008 at 5:59 am
Edwin,
Based on your architectural diagram you won't need the Fibre Channel Switch. The SAN you listed is an iSCSI solution so you only need Gigabit switched ethernet.
Also, you might want...
August 19, 2008 at 4:30 pm
What does that SP do? Can you post a script of that as an attachment?
Maybe it worked at one time because a password was saved somewhere such...
August 15, 2008 at 5:29 pm
Is the @username that's passed into that stored procedure a SQL login? Do all usernames come back with the same error?
August 15, 2008 at 5:11 pm
Dave,
What does the stored procedure csp_AddDMUser do? Is it that you can login to the application using the sa account but that the stored procedure errors out?
August 15, 2008 at 4:10 pm
Take a look at the REVERSE function. The steps would look something like this.
Initial string: you are working
Reversed: gnikrow era uoy
Extract first word: gnikrow
Reversed: working
August 15, 2008 at 9:48 am
First thought is to make your sa password complex enough to meet the password complexity requirements.
Otherwise, to disable that check; [font="Courier New"]ALTER LOGIN [sa] WITH CHECK_POLICY=OFF[/font]
August 14, 2008 at 4:08 pm
Depends on if the client you're using to connect to SQL supports redirection.
Have a look at this article: Implementing Application Failover with Database Mirroring
August 14, 2008 at 1:06 pm
Using FOR XML PATH, this should be close.
SELECT c.idChemical as "c/@idChemical",
(SELECT s.chemicalSubLeft as "s/@SpecDescription" FROM chemicalSubInfo s WHERE c.idChemical = s.idChemical FOR XML PATH (''), TYPE),
(SELECT s.chemicalSubLeft as "p/@measurement" FROM...
August 14, 2008 at 12:51 pm
To see the DBCC PAGE output you have to enable trace flag 3604; DBCC TRACEON(3604).
https://blogs.msdn.com/sqlserverstorageengine/archive/2006/06/10/625659.aspx
August 13, 2008 at 1:56 pm
So for example, if SPID 55 is killed by SPID 80 then you want to know what SPID 55 was doing?
How about starting with the replay trace template?
August 13, 2008 at 12:56 pm
You should be able to get the spid and hostname for a kill using the ErrorLog class; filter on something like 'killed'.
August 13, 2008 at 12:41 pm
Keith,
Yes, the Rebuild Index is probably what's causing the transaction log to grow. That rebuilds all indexes and index rebuilds are logged operations.
Something you might want to consider is...
August 13, 2008 at 11:57 am
ericzbeard (8/11/2008)
I just assumed that the defaults sent in by...
August 11, 2008 at 1:40 pm
In the original query window you were probably getting a different execution plan. Then when you set the options you likely got the same plan as the client app, ...
August 11, 2008 at 12:41 pm
Viewing 15 posts - 106 through 120 (of 372 total)