Viewing 15 posts - 916 through 930 (of 1,186 total)
Be careful when using the upsize tool. It will create the tables and come 90 - 99% of guessing the properly data-types and sizes (usually closer to 99%)
UNfortunately, ANY PKs,...
July 20, 2004 at 9:16 pm
Another thing to check might be as simple as what does this user have up and running that others dont....
May be some "unofficial" software has crept onto the machine either...
July 20, 2004 at 9:13 pm
I think the problem might be the fact that the tran1 doesn't really do anything in the example. Have you tried having it INSERT a record into a "play" table with...
July 20, 2004 at 9:08 pm
Personally speaking I prefer Allen's method. Table variables UNLESS used for small lookup only type stuff I have found to be BAD.. I know we debate this all day long...
July 20, 2004 at 8:58 pm
Sounds like MrSQL gave you the first half and your 2nd half you need to
DELETE FROM table2 WHERE AccountID IN
(SELECT T2.AccountID
FROM table2 T2
INNER JOIN table1 T1 ON...
July 20, 2004 at 8:53 pm
Try researching
EXEC sp_change_users_login 'Auto_Fix', 'UserNameHere'
More information in BOL
July 20, 2004 at 8:48 pm
What about something like the following?
SELECT [name], '01/01/1900 00:00:00' Processed INTO #dbnames
FROM master..sysdatabases WHERE [name] NOT IN ('master', 'model', 'msdb', 'tempdb', 'northwind', 'pubs')
SELECT * FROM #dbnames
DECLARE @Loop INTEGER
DECLARE...
July 20, 2004 at 10:09 am
Please post replies to :
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=131&messageid=127183
same question and will help maintain thread.
July 20, 2004 at 9:47 am
the .ldb is autocreated by Access when an Access DB is opened. Sounds like the Access DB is not being closed upon completion of the DTS package.
I would check the...
July 20, 2004 at 9:43 am
I would also make sure that the job owner has access to the databases and has permission to backup the databases.
July 20, 2004 at 6:19 am
Have you tried a tab delimited output or comma delimited output with the extension of CSV? I know that I did this at my last company and never had to...
July 20, 2004 at 5:44 am
Couple of things to check
July 20, 2004 at 5:40 am
As far as I can tell you cannot start it via native SQL commands. Did find this in BOL
The sqlagent application starts SQL Server Agent from the command...
July 20, 2004 at 5:37 am
Can you build in a step that does a "sleep" step or modify the unzip step to not start until all 4 files are there?
July 20, 2004 at 4:01 am
I think that you can do the following:
SELECT (EXEC sp_help_job @job_name='job', @job_aspect='JOB') INTO #tempTable
Or some variant thereof. Should be able to find more info in BOL OR...
You could query...
July 20, 2004 at 3:59 am
Viewing 15 posts - 916 through 930 (of 1,186 total)