Viewing 15 posts - 826 through 840 (of 2,647 total)
pveilleux (5/31/2012)
SQLKnowItAll (5/31/2012)
May 31, 2012 at 1:23 pm
Try going to gpedit.msc and navigating to Computer Configuration --> Administrative Templates --> System-Logon; then enable "always wait for the network at computer startup and logon."
May 31, 2012 at 1:19 pm
Off the top of my head, you can try changing the SQL Services to delayed start. I think there may also be a registry setting or WMI setting to make...
May 31, 2012 at 1:16 pm
Since it is a domain account, why not just change the password and see who comes complaining to you? Who all needs to know that password? Hopefully only you...
May 31, 2012 at 1:07 pm
It could be that a script is being run via task scheduler or some other windows/web application is kicking off the job.
May 31, 2012 at 12:53 pm
EDIT: I see the difference in the messages now between schedule and what you are displaying.
May 31, 2012 at 12:40 pm
Scheduled jobs run under the service account for SQL Server Agent.
May 31, 2012 at 12:28 pm
The problem with NOLOCK is that you can get strange results back when you attempt to read data that is being updated, in some cases you can see the before...
May 31, 2012 at 9:12 am
My first guess is that they are mapped drives; i.e. the drive letter exists when you are logged in and you attach the files. Then when you log out...
May 31, 2012 at 8:49 am
Glad to help!
May 30, 2012 at 3:00 pm
Ok, so this?
INSERT INTO @destinationB (ProjID, DataOne)
SELECT a.ID, o.DataOne
FROM @destinationA a
INNER JOIN @OriginalTable o
ON a.DataTwelve = o.DataTwelve
May 30, 2012 at 2:43 pm
Is this a 1-time migration of data or something that has to be done regularly? I believe you can just do a separate insert into each table. You...
May 30, 2012 at 2:34 pm
I'm sorry... but I don't see a question. 🙂 EDIT: I see the question now:
Will this require dynamic SQL?
My guess is no, but I have to...
May 30, 2012 at 2:25 pm
Kind of hard to help when we don't have the DDL for the tables 🙂 Also, default collation, database collation, view definition...
May 30, 2012 at 2:18 pm
Viewing 15 posts - 826 through 840 (of 2,647 total)