Viewing 15 posts - 751 through 765 (of 1,186 total)
October 12, 2004 at 10:29 am
how about WHERE CONVERT(VARCHAR(10), Removed, 101) >= DATEADD(DAY, CONVERT(VARCHAR(10), GETDATE(), 101)
as an example??
October 12, 2004 at 10:29 am
Mike,
I know now what you are talking about and I dont use the debugger in QA. It just feels wrong (don't ask). I generally write stored-procedures as TSQL code...
October 11, 2004 at 5:43 pm
I just ran it like this:
EXEC testdate '2004-10-11'
October 11, 2004 at 10:22 am
Messages have been posted to http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=9&messageid=140996
October 11, 2004 at 5:29 am
You can get the constraint name FROM sysobjects WHERE xtype = 'C' AND WHERE parent_obj = the [id] FROM sysobjects WHERE [name] = 'WebRsLog'.
With this information you receive the different CONSTRAINT...
October 11, 2004 at 5:27 am
If you know the userid why not SELECT UserID, COUNT(*) FROM tableX GROUP BY UserID ??
October 11, 2004 at 5:16 am
You cant without using an ActiveX or Dynamic Properties object. You would then have to use the above information for the parameter for the stored-procedure.
Without using the DTS objects I...
October 9, 2004 at 6:17 am
IF limiting the memory SQL can use to 1GB and CPU usage dropped is that a bad thing?
October 8, 2004 at 10:47 am
Research using parameters with Stored-Procedures in DTS. You create the global variable and then in the Execute SQL task add parameter(s) as ?
Then add the parameter(s) in order on the...
October 8, 2004 at 9:40 am
What you can try (may not be the BEST idea) is:
DETACH the database, RENAME the log file, ATTACH the database and then try and shrink the LOG file (or try it...
October 8, 2004 at 9:08 am
Great solution David! Never would have thought about stuff
October 7, 2004 at 7:12 pm
Have you verified that you don't have garbage dates? they are actually dates?
October 7, 2004 at 6:21 am
You could reference sysobjects table (for table objects) and incorporate that with the ForEachDB (I have seen this posted here before don't remember exact syntax) and build dynamic SQL to...
October 7, 2004 at 5:50 am
Viewing 15 posts - 751 through 765 (of 1,186 total)