Viewing 15 posts - 16 through 30 (of 1,185 total)
1. Try parsing the string together into a variable and then PRINT the variable. SHOULD help ID the problem
2. SQL server is aware enough to realize that '2005-09-01 00:00:00.000' regardless...
November 21, 2005 at 4:34 pm
Pretty much then. Via linked server I don't believe you can ADD objects however, you can update, delete, insert etc...
November 21, 2005 at 4:30 pm
Do they use SP's or ADHOC SQL? I agree with grabbing data with PROFILER.
IF SP then looks for the ones that changed recently and you can look at ESTIMATED execution...
November 21, 2005 at 12:03 pm
Have you looked up error in BOL? If you poke around may help...
Error = 0 means EVERYTHING is ok.
November 21, 2005 at 12:00 pm
have you checked the CLIENT network utility to ensure TCP/IP is enabled there as well?
Have you tried connecting WITHOUT telling it ,1433? If this is the DEFAULT instance try NOT...
November 21, 2005 at 11:57 am
1. What is the error?
2. Why are you trying to convert 2005-07-11 00:00:00 to DateTime WHEN you are going to get the exact same information?
November 21, 2005 at 11:53 am
Personally I don't know what they are so I cannot tell you if SQL already has something built-in to handle this.
Can you expand on what those functions are?
November 21, 2005 at 11:49 am
What permissions did you setup for them to have? i.e. did you set up impersonate? or are they using their own credentials///
November 21, 2005 at 10:01 am
Sounds like there is bad juju in the stored-proc. can you post it so it can be eyeballed for possible areas of improvement?
November 9, 2005 at 5:59 pm
Have you looked at BOL and searched for SELECT INTO....
November 9, 2005 at 6:38 am
Start with getting network engineers and server engineers involved to start sniffing network/mem usage
start running profiler to capture what is going on.
Have someone else (other than the original developer(s)) look...
November 9, 2005 at 6:37 am
November 9, 2005 at 6:35 am
What version of SQL are you using? Which BOL are you using to gather your information? If you are using 2K5 and the 2K BOL that could be a problem. ...
November 7, 2005 at 9:49 am
SELECT *
FROM Ordhed O1
LEFT JOIN QCordhed QC ON O1.OrdhedID = QC.OrdhedID
WHERE QC.OrdhedID IS NULL
as an alternative
November 7, 2005 at 9:45 am
Try running the below in query pane 1
SET DATEFIRST 1
SELECT DATEPART(WEEKDAY, '2005-11-06')
And this in query pane 2
SELECT DATEPART(WEEKDAY, '2005-11-06')
The DateFirst only affects current execution and does not update...
November 7, 2005 at 6:58 am
Viewing 15 posts - 16 through 30 (of 1,185 total)