Viewing 15 posts - 23,866 through 23,880 (of 26,490 total)
clive (11/6/2008)
1.
Truncate log file/s if you have very little disk space left due to the SQL Server log...
November 6, 2008 at 12:54 pm
Aspet Golestanian Namagerdi (11/6/2008)
I am using SQL SERVER 2000,Which it seems that it does not have "Top" feature in Delete and UpDate operation.Thanks
That explains it. You posted this in...
November 6, 2008 at 12:40 pm
If the transaction log file still exists, you may still be able to run a tail log backup and recover your database up to the point the database file was...
November 6, 2008 at 12:34 pm
Not mentioned as an answer, but here is a workaround using varchar(max) (or nvarchar(max)); build views over the two tables and cast the text/ntext column as a varchar(max)/nvarchar(max) datatype in...
November 6, 2008 at 9:05 am
Yep, you are missing the STOPAT = date-time in the second restore log. You need to specify the time just before dropping the table to recover the table from...
November 6, 2008 at 7:14 am
Just missing one thing, the expected results. Based on the sample data provided, what SHOULD the output look like. You should be able to put that together manually,...
November 5, 2008 at 9:47 pm
Provide us with the t-sql scripts you used to restore the database. Based solely on your description, we really can't tell you what you did wrong, if anything.
November 5, 2008 at 9:42 pm
Actually, I can see why they may need two years of data online. Previous employer required that we maintain that much history in OLTP system (COBOL/ISAM databases). We...
November 5, 2008 at 9:37 pm
How about the DDL for the tables, some sample data (as insert statements that can be cut, paste, and executed in SSMS) to load into the tables, and the expected...
November 5, 2008 at 2:26 pm
What version of SQL Server are you running?
Also, post the SQL Code you used and got the error with, please.
November 5, 2008 at 1:37 pm
Not really sure, but do you have indexes like these on the table in the query? The names used for the indexes are mine.
create nonclustered index IX_vgh_ProductsQry1
on dbo.GICSPFVendorCategoryHeader (
...
November 5, 2008 at 1:34 pm
The best alternative you have, you've been told you can't use. This is a perfect place to use SQL Server Service Broker. A trigger sends a message to...
November 5, 2008 at 11:57 am
Here is a code sample for dropping records from a table in batches:
declare @backupcnt int;
declare @backupfile varchar(128);
set @backupcnt = 0;
-- Delete records that are more than 5 years old from...
November 5, 2008 at 11:47 am
All I can say, is maybe. When I found out that NS would not be a part of SQL Server 2008, I stopped even looking at it for anything....
November 5, 2008 at 11:32 am
Viewing 15 posts - 23,866 through 23,880 (of 26,490 total)