Viewing 15 posts - 436 through 450 (of 1,186 total)
IF you do the following you will NOT get ---------
PRINT @Counter v. SELECT @Counter
April 6, 2005 at 4:56 pm
1. No new instance is needed. All you need to do is give different name and away you go...
![]()
Should be no problem to...
April 6, 2005 at 4:55 pm
Change from SELECT ... to PRINT. Of course this will only accept a single PRINT value thought.....
April 6, 2005 at 10:47 am
As far as I know this cannot be done. The color is a return to screen feature only. I don't know of a 3rd party tool either that will accomplish...
April 6, 2005 at 10:45 am
Unless you have defined one then there is no audit trail of who/what/where/how/why..
April 5, 2005 at 12:31 pm
The problem is:
SQL is looking at your passed variable 1,2,3,4,5 as a LITERAL and NOT a NUMERIC ARRAY.
What you want to do cannot be accomplished by what you are trying to...
April 5, 2005 at 10:56 am
SQL doesn't supply built-in tracking. You need to supply the audit trails, etc..
April 5, 2005 at 5:49 am
see same post http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=92&messageid=171994 for reply
April 5, 2005 at 5:48 am
For #1 I would ensure that the security of your server is set in mixed mode and not windows mode only. SQL security tab under properties when you right-click on...
April 5, 2005 at 5:48 am
I remember having a conversation with someone here that stated local variables do perform better but can not remember why...
How are you defining the variables? VARCHAR v INT?
How are you...
April 5, 2005 at 5:45 am
Believe it or not this happened to me the other day and this looks as good a place as any to post:
I went to a DBA at the place where...
April 4, 2005 at 5:40 am
Taking it one step further you can even have COLUMNAR collations in the SAME table be different from each other AND the database
April 1, 2005 at 5:49 am
In addition IF you don't want NULL to be added Why not...
CREATE TABLE #TEMP
(FieldX VARCHAR(10) NOT NULL DEFAULT(''))
This way the program will scream if it gets a NULL
March 30, 2005 at 2:24 pm
Viewing 15 posts - 436 through 450 (of 1,186 total)