Viewing 15 posts - 21,076 through 21,090 (of 22,202 total)
Nope. That isn't possible.
What you can do, although it is VERY strongly not recommended, is pass the table name in as a string and then use dynamic TSQL to use...
February 6, 2008 at 8:45 am
Just remember that Books Online (BOL), the doucmentation installed with SQL Server, is your best friend in the world. Don't be a afraid to open it up and read up...
February 6, 2008 at 8:41 am
Sorry Sandy, not a clue. I've only seen MySQL once or twice. I'm just not terribly familiar with it.
February 6, 2008 at 6:50 am
After you get the truncate working, you'll want to look at the query plans for the views to ensure that good indexes are in place.
February 5, 2008 at 12:38 pm
That is odd. Did you try taking off only part of it? Remove the parenthesis? Remove the ON [Primary]? Remove one of the WITH clauses?
I'm just not sure. I've run...
February 5, 2008 at 9:09 am
We've used LiteSpeed for quite a while. Nothing spectacular to report. The tools is pretty solid. Quest has been adequate as a vendor. I've also tested RedGate's tool and found...
February 5, 2008 at 8:44 am
You've got a second problem as well, you need to make sure that you have the security settings to allow you access to that file. Once you've addressed that...
Can they...
February 5, 2008 at 6:38 am
I've stayed away from using functions, but the CROSS & OUTER apply statements work incredibly well with set based SELECT statements applied to the rows returned by the rest of...
February 5, 2008 at 6:32 am
To do that automatically you can either buy a tool like Embarcadero Rapid SQL that will do it for you, write a program using SMO to walk each table generating...
February 5, 2008 at 6:28 am
You're asking for improved methods of Row-By-Agonizing-Row (RBAR) processing. That type of processing is inherently slow because TSQL is set up & optimized for set based processing. You're almost guaranteed...
February 5, 2008 at 5:46 am
Sorry that wasn't helpful. I thought that covered most everything. However, for drill down, one place I go is the Query Procesing Team blog. This is the Storage Engine team's...
February 5, 2008 at 5:42 am
I've tested in 2008 and 2005. I also change the compatibility level of the database I was testing on and it worked on all of them, even 7.0. I'm not...
February 4, 2008 at 1:03 pm
Did you mean to post this in the 2008 forum? If so, I tested your script on a 2008 database and it ran just fine. I'm not sure where the...
February 4, 2008 at 11:15 am
I found Itzik Ben Gan's course on advanced TSQL very helpful. He covered all the new TSQL functionality in great depth. He's from Solid Quality Mentors.
February 4, 2008 at 9:02 am
Viewing 15 posts - 21,076 through 21,090 (of 22,202 total)