Viewing 15 posts - 286 through 300 (of 1,109 total)
mr_omid (4/4/2008)
Thanks for the quick replies. Does anyone know of a good reference site where I can do some further reading on this?
Books Online (the documentation with SQL Server...
April 4, 2008 at 8:16 am
mr_omid (4/4/2008)
I have a question about backups that are taken whilst updates or inserts are running in SQL 2005. If there is a job that runs from 1am-2am that...
April 4, 2008 at 6:49 am
Some more information (or proof :))
http://msdn2.microsoft.com/en-us/library/ms187956.aspx
From this page:
The SELECT clauses in a view definition cannot include the following:
....
A reference to a temporary table or a table variable.
Regards,
Andras
April 4, 2008 at 5:36 am
The short answer is no. It could be possible via extended stored procedures, which you can write in C, then use JNI, but this would be a pain and would...
April 4, 2008 at 3:48 am
icampbell (4/4/2008)
What is the easist way to make a copy of a sqlserver 2005 database on the same server.As i need to use the database for test purposes
Backup, then restore...
April 4, 2008 at 3:19 am
Steven Coleman (4/3/2008)
April 3, 2008 at 8:30 am
Well, you have forgotten the where clause in your update statement 🙂
You need to check that the updated record is in your "inserted" or "deleted" table (these contain all the...
April 3, 2008 at 8:22 am
jason.stinson (4/3/2008)
April 3, 2008 at 7:27 am
Michael Niemand (4/3/2008)
I schedule the following steps
-Full Backup at lets say 00:00
-Log Backup with INIT at 00:30
-Log Backup with NOINIT every hour, starting...
April 3, 2008 at 5:57 am
If you want to use init, then you could create 24 log backup files, and every hour you would back up to the relevant file only. You will have only...
April 3, 2008 at 5:11 am
raja_saminathan (4/3/2008)
Thanks for your Kind Information.
Well i tried to use the simple Insert into Query ,but i didn't get the things .
For Eg:
I have two tables with same...
April 3, 2008 at 5:04 am
raja_saminathan (4/2/2008)
Can Any body help me by providing ideas in the following:
I want to transfer the datas in the table from one database to other newly updated database which contains...
April 2, 2008 at 2:13 am
It actually costs to increase you transaction log file size frequently and the physical file can become fragmented, etc. Why are you trying to shrink it? I.e. if it will...
March 28, 2008 at 5:40 am
You are trying to create a procedure (CREATE PROCEDURE dbo.CLR_Common_ReplaceChar)
You cannot do this for methods that return other than ints. I assume you want to create a UDF, so you...
March 28, 2008 at 5:27 am
Viewing 15 posts - 286 through 300 (of 1,109 total)