Viewing 15 posts - 7,171 through 7,185 (of 14,953 total)
There's a report you can get on schema changes. Deleting a table is a schema change.
Right-click on the database in Management Studio, and select Reports, then select Schema Changes....
January 22, 2010 at 5:52 pm
I've had a couple of good uses for CLR.
One is similar to something already mentioned, it returns drive data about remote drives. I use this to test...
January 22, 2010 at 1:56 pm
There's a great article on how to do that kind of thing at http://www.simple-talk.com/sql/t-sql-programming/the-helper-table-workbench/.
January 22, 2010 at 8:35 am
glee777 (1/22/2010)
Can I use one that's on my system in a...
January 22, 2010 at 8:31 am
I haven't been active on SSC much for the last few days, and probably won't be for a few more, because of my new job and getting settled in to...
January 20, 2010 at 5:13 pm
I'm not sure what you mean by "embraces". Did you mean "embarass"? "Embrace" means to hug or contain. "Embarass" means to make some look bad.
January 15, 2010 at 7:53 am
XML indexes work by creating a relational model of the data and storing that in the index.
In other words, they do a behind-the-scenes transformation into relational structure. Because they...
January 15, 2010 at 7:35 am
You probably could use XML, but it'll almost certainly end up with worse performance than a purely relational table.
Why not a table that lists permissions and rows? Could be...
January 14, 2010 at 1:19 pm
Is there a slight difference in the database name this time around? Either that, or the replace command was issued without you noticing it, would be my guesses.
January 14, 2010 at 1:17 pm
sihaab (1/14/2010)
Try this and more on Google as well...
That's talking about exactly what I already mentioned: Stored procedures called by other stored procedures. (That's the SQL version of it...
January 14, 2010 at 1:13 pm
It takes the place of the table name in the "for each table" proc. Comparable in the "for each db" proc.
January 14, 2010 at 1:09 pm
I guess I'm not clear on what you mean by subroutines here. One stored procedure can call others, which is how I'm used to thinking of subroutines - code...
January 14, 2010 at 1:07 pm
Just don't run a script like that on any column that might intentionally include XML.
And hope nobody has a password with brackets in it.
That's why I recommend actual regex functions....
January 14, 2010 at 12:10 pm
I'd be inclined to recommend using CLR regex functions for that.
And I'd use them on inputs, instead of scanning the whole database every hour.
January 14, 2010 at 11:17 am
Steve Jones - Editor (1/14/2010)
January 14, 2010 at 11:15 am
Viewing 15 posts - 7,171 through 7,185 (of 14,953 total)