Viewing 15 posts - 9,151 through 9,165 (of 9,641 total)
The GUI will time out regularly when modifying large tables. T-SQL is the best way to make modifications to large tables.
Shane's suggestion is good as well. Although I...
February 29, 2008 at 8:18 pm
No problem, I enjoy pretending I am an expert. BTW-I was right on my answers.
Before triggers were never part of MS SQL Server. I know they...
February 29, 2008 at 8:14 pm
There is also a free tool out there called SQLDigger that will do exactly what you are asking. http://sqldigger.bdsweb.be/
February 29, 2008 at 8:02 pm
Hey no problem, David is my middle name anyway.
You want your update trigger to join on the inserted table;
Update A
Set UpdateUser =...
February 29, 2008 at 8:00 pm
Every place I have worked the DBA's were responsible for SQL Backups to disk and then the Server/Network admins were responsible for getting the backups to tape. We worked...
February 29, 2008 at 7:56 pm
I've never used one, but SQL Server has an Instead Of trigger that will probably allow you to do what you want. Basically the code in the Instead Of...
February 29, 2008 at 7:45 pm
Please post similar questions in 1 post.
One issue you need to deal with is that every time SQL Server is restarted, tempdb is recreated and it is recreated based on...
February 29, 2008 at 7:43 pm
You can attempt to run DBCC ShrinkFile('tempdev_log') to recover space in the tempdb log file or you can restart the sql server. If you tempdb log file is full...
February 29, 2008 at 7:29 pm
For CreateDate and CreateUser you want column defaults not an insert trigger. You can create the defaults using the GUI or with T-SQL. If the table already exists:
ALTER...
February 29, 2008 at 7:27 pm
If you want help you have to provide some information. If you post the step in the Job someone might be able to help as well. Just giving...
February 29, 2008 at 6:11 pm
Does this table, dbo.VXTrackerStatsWithDuration, exist in the source?
Are you running the package in BIDS or on the server?
Does the account that the package is running under have permissions...
February 29, 2008 at 3:18 pm
Yes you can use case in a where clause. I think if you explain the desired results and post the table structures and dummy data, we can come up...
February 29, 2008 at 3:10 pm
I believe so, if that is one of the objects that is part of your publication.
February 29, 2008 at 3:08 pm
If the IIS server and SQL Server are not on the same box, ASP.NET will not pass Windows credentials easily. I am not an ASP.NET guy, so you will...
February 29, 2008 at 3:05 pm
Does the location of the Excel file exist on the server? Does the user executing the package on the server have rights to the location of the Excel file?
February 29, 2008 at 2:58 pm
Viewing 15 posts - 9,151 through 9,165 (of 9,641 total)