Viewing 15 posts - 16 through 30 (of 57 total)
TomThomson (9/28/2015)
September 28, 2015 at 3:09 pm
Very Nice with some useful tweaks in the thread.
Thanks
September 17, 2015 at 5:33 am
MyDoggieJessie (4/7/2015)
This assumes that you have a schema in the database named "tmp" otherwise it fails because the schema does not exist.
+1
Guessed correctly that that important piece was omitted...
April 13, 2015 at 8:23 am
Hany Helmy (3/5/2015)
Jostein Saethern (3/4/2015)
The "delete table BBB;" statement in d) will fail.Its just a typo.
I hate having to guess what was a typo and what is intentionally incorrect
March 5, 2015 at 5:00 am
matthew.flower (2/4/2015)
February 4, 2015 at 5:32 am
SQLRNNR (11/18/2014)
The correct answers listed are only for trace...
November 18, 2014 at 10:08 am
Sean Pearce (7/28/2014)
Your question is version specific. From SQL Server 2012 the file will be created.
Thanks Sean for providing a much better explanation
Using 2012, I had empty file
+1
July 28, 2014 at 5:16 am
HanShi (6/6/2014)
June 6, 2014 at 6:51 am
As to explicitly dropping Temp Tables as soon as they are no longer needed goes, "It Depends". Dropping Temp Tables in a batch oriented stored procedure will probably be...
May 23, 2014 at 5:51 am
happycat59 (5/15/2014)
May 16, 2014 at 5:51 am
Eirikur Eiriksson (5/14/2014)
I got it wrong:ermm: or did I:w00t:
Note, on Microsoft Support there is an article; Enable plan-affecting SQL Server query optimizer behavior that can be controlled by...
May 15, 2014 at 5:30 am
By inserting into the table variable and querying it you effectively do that...
One more change to only search user created tables (if you happen to search for a word in...
May 6, 2014 at 4:56 am
Try something like
sp_msforeachdb 'select "?" AS db, schema_name(schema_id) as [schema_name], name as table_name from [?].sys.tables where name like "%SOME_TABLE_NAME%"'
Cheers
May 5, 2014 at 12:27 pm
A little off topic...However....
How does one get SQLPrep or is it even available for public consumption?
I do not see a link at http://www.csqls.com/
Thanks
April 8, 2014 at 8:49 am
Viewing 15 posts - 16 through 30 (of 57 total)