Viewing 15 posts - 3,121 through 3,135 (of 3,232 total)
I've got a couple of things here:
1. It looks like you are attempting to place the backup files in the root of C:\? If so, I would suggest you move...
December 8, 2005 at 2:47 pm
I do not think you need a package for each user. You should be able to set up one package with multiple text file connections pointing to one SQL Server...
December 8, 2005 at 2:36 pm
Some organizations also have Storage Admins who handle physical storage of data. So, as a DBA, you may have to interact with the Systems admin for OS/Windows related tasks and...
December 8, 2005 at 2:08 pm
Have you tried to run any sort of diagnostic tools on your SQL Server? It sounds to me like the server was undersized to begin with, then it was broken...
December 8, 2005 at 12:00 pm
If you need to process, row by row, I would suggest selecting from inserted/deleted and working off of temporary tables. This would allow you more flexability with how you handle...
December 8, 2005 at 8:03 am
The trust is the reason why everything is still working as it was prior to the domain move; however, Rudy is correct in stating that it may be temporary in...
December 7, 2005 at 12:44 pm
When you say multiple rows, I assume you mean that you want to perform some process based on all or a subset of rows that exist in the inserted/deleted virtual tables? ...
December 7, 2005 at 8:14 am
I would use profiler if this is for a short term period so that you can satisfy your manager’s needs. If you need a long term/permanent solution, I would...
December 6, 2005 at 3:28 pm
If your users are still working OK, then they also set up a trusted relationship between the two domains. I have seen this before and left the Windows logins with...
December 6, 2005 at 1:37 pm
Try adding a ',' between each column in your select and give your text file a .csv extension.
Example:
Select ColumnA, ',', ColumnB, ',', ColumnC from tableA
December 6, 2005 at 12:48 pm
SQL Server will allow you to set it back to blank. When you go to set the password, notice that there will be a 'blank password (not recommended)' checkbox.
As...
December 6, 2005 at 12:34 pm
I do not have experience writting scalar functions, but you should be able to get your question answered by someone on this forum. There are some very advanced SQL statement...
December 6, 2005 at 10:16 am
As a side note, be careful when calling stored procedures through your triggers. Anything you add to your triggers is going to prolong your transactions and could lead to more...
December 6, 2005 at 9:35 am
Hey, no offense intended. You have to admit, that is one wild looking query. I, like Vladan did not even try to read through it. You've given us an example...
December 6, 2005 at 9:26 am
See, I knew there was a better way!!
December 5, 2005 at 4:25 pm
Viewing 15 posts - 3,121 through 3,135 (of 3,232 total)