Viewing 15 posts - 46 through 60 (of 61 total)
Or look at the execution plan for the proc...
January 17, 2006 at 12:29 pm
How about a maintenance plan on the system DBs?
January 17, 2006 at 8:34 am
An output parameter on a procedure will only allow you return 1 value, so if I'm reading this correctly you'll need to drop the output param (@ID) on the procedure.
insert...
January 17, 2006 at 7:32 am
You can open a support ticket with MS, submit the dump file, etc....
It looks like the problem is usp_GetSecurityScreenID. Take a look at the procedure and any tables it touches,...
January 13, 2006 at 12:00 pm
You can do a double convert on GetDate() to get the time stripped off...
SELECT ARJOBHD.INVNO, ARJOB.PRICE, ARJOB.FRTAMT, ARJOBHD.INVDATE
FROM ARJOB INNER JOIN
ARJOBHD ON ARJOB.INVNO = ARJOBHD.INVNO
WHERE ARJOBHD.INVDATE > CONVERT(DATETIME, CONVERT(VARCHAR, GETDATE()...
January 11, 2006 at 12:46 pm
'00001234' converted to a number will yeild 1234. How about dividing by 10000 on the file import?
January 11, 2006 at 12:34 pm
This is a good question I'll be curious to see some other responses. Here's a stab to get you going...
Of course, you'll have to look at your current servers...
What DBs...
January 11, 2006 at 7:15 am
Assuming you meant SQL Server 2000. I'm running Outlook 2003 on my WS with SQL 2000 with no issues.
Did you set up the mail profile for SQL Server Agent? From...
January 10, 2006 at 11:32 am
Kathi is correct about the transaction logs. You may also want to look at the scheduled jobs. From Enterprise Mgr..Server..Management..SQL Server Agent..Jobs.
Most of the installations I've seen make use of...
January 10, 2006 at 9:43 am
You can detach, move files and reattach, but Cory was asking about moving logins, jobs, etc... as well as the data.
I haven't had to move logins, let me know how...
January 6, 2006 at 11:01 am
It depends on how much you have to move. My thought would be the best way would be to back up master, msdb, and your databases and restore on your...
January 6, 2006 at 10:57 am
Was there more to this error message? Did replication ever work?
Did you check out the replication monitor?
January 6, 2006 at 10:52 am
Not sure I completely understand your Sys Admin's concerns. The point of write cache is to ensure the data does get written to disk.
Temp DB should always be on it's...
January 6, 2006 at 7:39 am
Viewing 15 posts - 46 through 60 (of 61 total)