Viewing 15 posts - 2,161 through 2,175 (of 5,103 total)
becareful!
if you have triggers or indexes those will not carry over with the above script. If you don't then consider yourself a happy camper
![]()
* Noel
October 25, 2006 at 12:31 pm
I have see that happen in the "new" MS wireless Keyboards when the "FLOCK" key is not in the right state.
hth
* Noel
October 25, 2006 at 12:30 pm
Because without knowing exactly which values are going to be passed to avariable the execution plan may be suboptimal.
you can encapsulate the logic on a sp and use the new...
* Noel
October 25, 2006 at 12:28 pm
>>I was hoping for a tool that would drop constraints, move data and rebuild constraints. Sounds like a niche market for a new third party tool.<<
BULK INSERT can bypass the...
* Noel
October 25, 2006 at 12:22 pm
I don't think it Impersonates the Account going out of SQL Server it does impersonates the credentials for local SQL Server objects.
From BOL:
The Windows process spawned by xp_cmdshell has the...
* Noel
October 25, 2006 at 12:09 pm
If minimizing disruption means "0" downtime you need to add a second transaction log file on the "other" drive. Then mark the first one as fixed length and shrink it...
* Noel
October 25, 2006 at 12:00 pm
Well, statistics of a database is a very wide term. Can you be more specific ?
* Noel
October 25, 2006 at 11:54 am
That error is because you are probably connected to a database that has compatibility level set to 8.0 (2000) instead of 9.0 (2005)
Cheers,
...
* Noel
October 25, 2006 at 11:46 am
... and she *strikes back* with elegant writing and a very nice must-read article
![]()
* Noel
October 18, 2006 at 9:17 am
Once again I have to opose to the
IF not exists()
Insert ...
Technique. That statement does *not* guarranties that after two connections return from the "If" part with the same...
* Noel
October 17, 2006 at 8:41 am
TVQuery maybe a Table Variable Query ?
Like:
declare @t table (x int )
select * from @T
Which by the way does not participates in transactions !?!
* Noel
October 6, 2006 at 4:22 pm
you have millions of rows per day, but does that justify one table per day ?
to answer your question
create several varchar(4000) and concat them in a dynamic exec like
exec...
* Noel
October 6, 2006 at 3:26 pm
When using Views and a linked server, the metadata has to be passed around. If there is a problem with that you get hanged.
Does a simple select in the...
* Noel
October 6, 2006 at 3:22 pm
Definitely is an architectural issue to keep replication at that pace but it is not strange to me. First separate the distribution database into its own server and secondly change...
* Noel
October 6, 2006 at 3:13 pm
Have you rebooted both ?
* Noel
October 6, 2006 at 12:58 pm
Viewing 15 posts - 2,161 through 2,175 (of 5,103 total)