Viewing 15 posts - 391 through 405 (of 1,409 total)
Thanks for providing the excellent sample code. 😀
Unfortunate I can't reproduce your problem. When I execute the code it is displaying all the correct minimum values in field ed.DateTimeProcessed. I...
July 23, 2014 at 3:46 am
From your VB6 you allready install the SQL instance. You could add some additional code to create an ODBC connection when the installation is finished. Next you execute the SQL-code...
July 23, 2014 at 1:43 am
I guess this should work (when you are logged in as the SA):
USE [master]
GO
ALTER LOGIN [sa] WITH PASSWORD=N'new_password'
GO
July 22, 2014 at 8:16 am
aurato (7/21/2014)
...
2) After the restart, tempdb and the model...
July 22, 2014 at 8:08 am
You could try to wrap the code in a TRY...CATCH block. In the TRY part you define the linked server to the primary instance. If this fails it will jump...
July 22, 2014 at 7:53 am
It is not possible to create a snapshot of a database on another instance. You could setup some kind of back-up/restore technique (perhaps logshipping?) to create a available database on...
July 22, 2014 at 7:41 am
Edward-445599 (7/16/2014)
If I now want to have nightly backups and t-log backups every 30 minutes.
Do I just set up a...
July 16, 2014 at 8:04 am
I don't think there is just one script to get all your desired information. You could search the script section of SSC site for several scripts and combine them yourself....
July 16, 2014 at 4:20 am
I'm not sure if I understand your question correct, but maybe this can help. You can use a CASE statement in an ORDER BY like this:
SELECT
...
ORDER BY CASE
WHEN ItemNumber...
July 16, 2014 at 2:57 am
Perry Whittle (7/15/2014)
July 15, 2014 at 7:55 am
CaptainSlock (12/15/2011)
Msg 5042, Level 16, State 1, Line...
July 15, 2014 at 3:07 am
Does the SQL Agent service account has permission on the linked server?
Look in the SQL Error log on the linked server and see the detaild errors regarding the failed login.
July 10, 2014 at 6:02 am
And in addition to my previous post:
Usinig the backup/restore method you always keep the original database available in case you need to fallback the migration.
July 9, 2014 at 5:19 am
I wouldn't opt for the detach/attach option. I would go for a similar option as Eirikur Eiriksson already mentioned in one of the previous posts:
1. Copy all logins with access...
July 9, 2014 at 5:17 am
Keep in mind that when one of the parts is NULL, the combined string becomes NULL. It looks like you have one or more rows where "c.First_Name" or "c.Last_Name" is...
July 8, 2014 at 8:08 am
Viewing 15 posts - 391 through 405 (of 1,409 total)