Viewing 15 posts - 211 through 225 (of 325 total)
Hello!
Did you need help in identifying system & user databases?
For example, given a database name, do you want to tell if it is a system database or a user database?
If...
December 6, 2010 at 7:12 am
Does this help you?
http://www.sqlservercentral.com/Forums/Topic881813-338-1.aspx
December 6, 2010 at 7:02 am
Speaking of other workspace improvements that Steve wrote about in the editorial, I like to write and think. I therefore use the whiteboard and/or the notebook a lot and one...
December 3, 2010 at 6:56 am
White noise/very light music works great for me. I work in an office with 5-foot tall cubicles and the discussions happening all around distracts me a bit. Very light music...
December 3, 2010 at 6:34 am
jane47 (12/2/2010)
I have a table that contains records that identified by a number. When a new record is inserted, I need to generate the next number in sequence. (was going...
December 2, 2010 at 10:02 pm
Straight-forward, simple, yet important question.
Thanks!
November 29, 2010 at 11:07 pm
The question missed the version of SQL Server targetted, however, this behaviour is still confusing.
From books online:
However, the text will be available to privileged users that can either access system...
November 26, 2010 at 2:25 am
How does this look?
DECLARE @Table1 TABLE (empid INT,name NVARCHAR(50),contact_num NVARCHAR(50))
INSERT INTO @Table1 VALUES (1111,'U1',9119),
...
November 25, 2010 at 4:30 am
da.drew (11/25/2010)
datetime - From January...
November 25, 2010 at 4:26 am
How does this look?
FYI - I have created the table variables in SQL 2008 and have hence used row constructors.
DECLARE @Table1 TABLE (wh INT,item NVARCHAR(10),stock INT)
INSERT INTO @Table1 VALUES...
November 25, 2010 at 4:21 am
From BOL (http://msdn.microsoft.com/en-us/library/ms175046.aspx):
command_string cannot contain more than one set of double quotation marks.
Also, "If you have trouble with embedded spaces, consider using FAT 8.3 file names as a workaround."
November 25, 2010 at 4:02 am
You can also use @@FETCH_STATUS - again, please refer BOL for further details.
November 25, 2010 at 3:44 am
Are your QUOTED_IDENTIFIERs ON?
Try using SET QUOTED_IDENTIFIER OFF at the beginning of the query.
November 25, 2010 at 3:34 am
Happy Thanksgiving to one and all! Happy shopping to all as well!
November 25, 2010 at 1:52 am
Viewing 15 posts - 211 through 225 (of 325 total)