Viewing 15 posts - 826 through 840 (of 1,166 total)
Yes, when you are deploying dts to production if you need to redo mapping of columns.
December 22, 2006 at 10:40 am
What will happen to the existing tables in the .mdf when I will add data to them?
SQL writes new data to .ndf and .mdf file until .mdf file gets full.
If .mdf...
December 22, 2006 at 10:38 am
DBCC INDEXDEFRAG increased log bigger than db reindex...
Check if there is any maintenance plan running for the db or REINDEX/INDEXDEFRAG job is running... OR it could be a big data...
December 22, 2006 at 10:33 am
I resolved this many times in my place with the method which I explained...
If you don't need need temp table at all then you can get rid of it..
December 22, 2006 at 10:30 am
During a full database or differential backup, Microsoft SQL Server backs up enough of the transaction log to produce a consistent database for when the database is restored.
All changes...
December 22, 2006 at 10:26 am
A description of the 4 GB RAM Tuning feature and the Physical Address Extension switch
http://support.microsoft.com/default.aspx?scid=kb;en-us;291988
December 22, 2006 at 10:18 am
SAN backups freez the db befor it takes the snap of the db files and later normalizes...
Always sql native backups are more reliable...If you make backups faster and the backup...
December 22, 2006 at 10:10 am
Use Global temp table (##)...
Create a ## global temp table in QA, without closing the QA window you have to create the dts package....
Once the dts package creation completed you can...
December 22, 2006 at 10:06 am
Is file size is managible by winrar command?
May be sql didn't get the returned aknowledgement when it is completed...
Try executing the bat file using xp_cmdshell command see what you get...or...
December 22, 2006 at 9:59 am
For all the steps you explained create a SSIS package and Schedule it as sql job to run as you needed....
December 22, 2006 at 12:38 am
select
distinct object_name(id) from syscomments where text...
December 22, 2006 at 12:34 am
When the recovery model is SIMPLE if you enable SELECT INTO... it will not change the recovery model... it changes the only option...
where as when the recovery model FULL if...
December 22, 2006 at 12:31 am
If you are running SELECT INTO statement to populate the table it will not change the recovery model...
If you change the db option to "SELECT INTO/BULKCOPY" usigng alter database statement or...
December 21, 2006 at 10:18 pm
There is no simple way to validate...
It is OK to validate the name of the column...but first read the "Rules for Regular Identifiers" in BOL to validate the names...
Rules for...
December 21, 2006 at 7:15 pm
You can't get rid of a page...either checktable should remove or copy the data to new table and delete the problematic table to resolve this page issue
December 21, 2006 at 6:58 pm
Viewing 15 posts - 826 through 840 (of 1,166 total)