Viewing 15 posts - 376 through 390 (of 14,953 total)
Weird. I guess I'd be poking around in settings if it were me. But sounds like you've already done that.
Call Microsoft? Should have some free support tickets...
December 13, 2012 at 9:37 am
Not sure what you mean about SSIS not being able to do a "dynamic command string". It can do dynamic connections, and dynamic queries.
But the main thing you're running...
December 13, 2012 at 9:31 am
What version of SQL Server is your database on, and what compatibility level is the database? Native SSMS intellisense is affected by that, if I remember correctly. (I...
December 13, 2012 at 9:27 am
Whatever works for you. As mentioned, they've all got pros and cons.
Edit: So far as I know, CDC doesn't use any triggers. It's basically just an automated log-parser....
December 13, 2012 at 9:23 am
GilaMonster (12/13/2012)
GSquared (12/13/2012)
Sch-M locks are schema locks. Means you can't change the definition of the table during the bulk insert.
Sch-M is a schema modification lock. Taken by...
December 13, 2012 at 8:58 am
Not clear on one thing: Intellisense in Visual Studio, or Intellisense in SQL Server Management Studio?
December 13, 2012 at 8:57 am
Another thing I find useful in SSMS, is use the Tools->Options->Environment, to change from "Tabbed documents", to "MDI environment".
Then you get individual "windows" for each connection, and you can see...
December 13, 2012 at 8:55 am
The green icons mean SSMS can tell that the SQL Server service is running. White means it doesn't have access to that data, so it's not sure.
Connections don't change...
December 13, 2012 at 8:44 am
Autoshrink will shrink the database when there's 25% space available, per http://msdn.microsoft.com/en-us/library/bb522682.aspx.
But it's almost always a really, really, really bad idea to turn on autoshrink.
You can also schedule a database/file...
December 13, 2012 at 8:08 am
Sch-M locks are schema locks. Means you can't change the definition of the table during the bulk insert. Might mess the whole thing up if you were to...
December 13, 2012 at 8:01 am
I don't have access to your database, so all I can say here is that the query is doing what you're telling it to. You just have a different...
December 13, 2012 at 7:55 am
I just noticed something. Doesn't mean it's new, just means I just noticed it.
Per the standings page (http://www.sqlservercentral.com/TotalScores), I'm still listed as "SSChampion", just like everyone else with serious...
December 13, 2012 at 7:14 am
Ah. Audit trails.
CDC will work for that. There are a number of other options, each with its own pros and cons.
I generally prefer to use triggers that capture...
December 13, 2012 at 7:02 am
I don't think that's a regex issue. Wouldn't you just use a find with a "and not" in it? Find anything with CREATE, and not with the regex...
December 12, 2012 at 12:23 pm
Viewing 15 posts - 376 through 390 (of 14,953 total)