Viewing 15 posts - 916 through 930 (of 1,161 total)
Check Database Integrity (should I include indexes?)
Please include indexes
Shrink Database(do I need to do it?, if yes I...
August 2, 2010 at 9:19 am
You may want to consider re-indexing table by table. Between two re-indexes you can also give a wait time of a minute or so. Also you can fire a transaction...
August 2, 2010 at 9:12 am
I second that. sys.servers should give you the details.
August 2, 2010 at 8:21 am
Please refer this article for some direction.
August 2, 2010 at 8:18 am
This article does it with screen shots.
August 2, 2010 at 8:09 am
This article on SSC should be useful to you.
August 2, 2010 at 8:07 am
GilaMonster (8/2/2010)
Adiga (8/2/2010)
One more cross-post. I have responded to your question hereThat link points to a thread on XML by a different poster.
Sorry 😉 I posted it in the wrong...
August 2, 2010 at 8:04 am
One more cross-post. I have responded to your question here
August 2, 2010 at 7:42 am
You may find this article useful.
August 2, 2010 at 7:02 am
Appending = Inserting
Please go through the INSERT statement details on MSDN.
August 2, 2010 at 6:40 am
1)actually i want to transfer some data of these table to a different database.
2)after that i want to delete data from these tables, but each table shud have at...
August 2, 2010 at 4:56 am
@ID varchar(max)
Select * from tblProduct
WHERE tbl_PRIM_Sales.Sale_ID in (@ID)
If you are planning to look for fixed number of values in the IN statement, you may declare multiple variable...
August 2, 2010 at 4:52 am
I am not sure what do you mean by SQL Server Network Service. SQL Server does not install any such service during installation.
August 2, 2010 at 4:48 am
cscript //B E:\backup\restore_script_codismaster.vbs
You may use the Operating System command while creating the job step and append an output file to the cscript command like below.
cscript //B E:\backup\restore_script_codismaster.vbs >> C:\csriptoutput.txt
The output...
August 2, 2010 at 4:30 am
Viewing 15 posts - 916 through 930 (of 1,161 total)