Viewing 15 posts - 4,111 through 4,125 (of 7,496 total)
langsoo (1/12/2009)
Any genius out there willing to help?
approximately 1,000,000 members of SSC ...
first glimps:
One thing I've seen in your 1222 list :
UPDATE WebCustomer SET CustomerCode = CustomerID
WHERE CustomerGuid = N'851e456e-2389-4c82-96b9-4be6aa93f717'
....
(@1...
January 21, 2009 at 7:43 am
hmm... indeed posting the query would indeed demistify a little bit.
Just copy/paste it as it is in your actual application/script.
(no matter the language 😉 of the columns)
January 21, 2009 at 2:15 am
Norm (1/20/2009)
I have implemented an auditing solution that uses 3 different trace files. My ultimate goal was to have a static trace id for each type of audit (DDL,DML,Logins).
The...
January 20, 2009 at 2:00 pm
Here's a set of scripts to diagnose SSB.
http://www.sqlservercentral.com/scripts/Maintenance+and+Management/31867/
And don't forget the SQLserver Errorlog !
January 20, 2009 at 1:52 pm
As you have seen, if the question is good, the solution(s) come in quickly :w00t:
January 20, 2009 at 1:49 pm
Lynn gave you the solution.
However for the query I would suggest to use a convert with a specific conversion type.
This way everybody maintaining your query will know of the explicit...
January 20, 2009 at 11:04 am
- Cross db queries ??
- we have been warned as from sql7.0 (if I'm correct sp2) that this kind of joins were obsolete. And with every migration project I've...
January 20, 2009 at 10:50 am
Is this related to bug http://support.microsoft.com/kb/959006/
SP3 has it in its fix list :w00t:
January 20, 2009 at 10:39 am
Nice testing Gabe.
Thank you for the feedback.
One of my co-workers discovered the same and it is a valuable lesson.
It is certainly worth to know, because everyone experimenting with partitioning and...
January 20, 2009 at 10:35 am
Lynn Pettis (1/7/2009)
January 20, 2009 at 6:44 am
Dugi (1/10/2009)
January 20, 2009 at 6:37 am
Right there with you Lynn.
To me ansi is the guideline, "dialect" will get used whenever ansi doesn't perform as it should.
IMO that's where any DBMS will try to make a...
January 20, 2009 at 12:04 am
As Manu stated you need to use SQL_Latin1_General_CP1_CI_AS
CREATE DATABASE [yourDbName] ON PRIMARY
( NAME = N'yourDbName_data'
, FILENAME = N'X:\MSSQL.1\MSSQL\Data\yourDbName_data.mdf'
, SIZE = ..., MAXSIZE = ..., FILEGROWTH =...
January 19, 2009 at 7:20 am
vikas bindra (1/19/2009)
Also, you don't need the outer cusor: ...
Right on target :exclamationmark:
January 19, 2009 at 6:19 am
No reason to shout 😉
Why are you using a cursor for this in the first place ?
SELECT MAX(TRANSACTIONID) FROM UDMLastTransaction
It would be better to just select it directly into a...
January 19, 2009 at 5:18 am
Viewing 15 posts - 4,111 through 4,125 (of 7,496 total)