Viewing 15 posts - 106 through 120 (of 321 total)
Drop the indexes and bulk insert and check. It should boost the performance. After bulk insert recreate all the indexes.
December 29, 2009 at 11:16 pm
Is the both the inputs are standard or varies?
December 29, 2009 at 10:41 pm
Using SP_configure u can find the options set in 2005 sever.
And it is always recommended to use dbcc checkdb after migration.
December 29, 2009 at 6:17 am
Drop the nonclustered located on PRIMARYINDEX acct_id, cont_stub
and check.
December 29, 2009 at 6:14 am
select a.query,sum(a.querycnt+b.querycnt) from #jan a ,#feb b
where a.query=b.query
group by a.query
December 29, 2009 at 6:00 am
File Stream data type stores the file on a physical folder instead of the database file itself, but we can "insert" or "select" the file just like it was stored...
December 29, 2009 at 2:51 am
Yes,Creator's permissions are being impersonated when the user having "EXECUTE" privilege is calling the stored procedure.
December 28, 2009 at 9:35 pm
Set production database in single user mode
Take full back of production database
Following is example for Detach the Database
EXEC sp_detach_db 'AdventureWorks', 'true';
Following is the example for Attach the Database
EXEC sp_attach_db @dbname...
December 28, 2009 at 2:03 am
No need of having IIS. Use BOL for TL restore script, it is defined very well with good examples.
December 28, 2009 at 1:56 am
What is criteria for arriving Debit Amount and Credit Amount?
December 28, 2009 at 1:53 am
Please post the error message you are getting in System Event log.
December 28, 2009 at 1:46 am
Can you change the service start account to Local System and try staring the
SQL Server Agent service. Use SQL Server configuration manager to chnage
the service startup account.
December 18, 2009 at 4:57 am
I mean real data and what is maximum rows and column u get??? and is there any delimiter??? and how can u arrive that it is first line in the...
December 18, 2009 at 2:39 am
What are the operations you are performing in the scripts?????
December 18, 2009 at 2:21 am
Viewing 15 posts - 106 through 120 (of 321 total)