Viewing 15 posts - 2,866 through 2,880 (of 5,356 total)
I guess it does as long as you're not watching it on a laptop via TV card....![]()
January 12, 2004 at 12:56 am
DECLARE @stmt NCHAR(1000)
SET @stmt = 'CREATE VIEW....'
EXEC (@stmt)
If you want this on a regular basis, you might want to take a look at sp_executesql in BOL. It has some advantages...
January 11, 2004 at 1:34 pm
Sourcesafe!
I guess, because it comes with Visual Studio
January 11, 2004 at 1:27 pm
I use the image data type to store xls, doc, pdf, ppt and I don't know what else.
Front end is some asp application which opens the data in the associated...
January 11, 2004 at 1:25 pm
Hm,...Black belt is used somewhere else. Still think let the people decide. ![]()
January 11, 2004 at 1:20 pm
Life after computer and databases ? ![]()
I think I've heard about it.
January 11, 2004 at 1:15 pm
SELECT [datecolumn] & " " & [timecolumn] AS MyDate
FROM Tabelle1;
January 11, 2004 at 1:09 pm
More than one way to skin the cat, I guess.
I would create a query in Access that combines both columns into one, switch to SQL Server and import the data...
January 10, 2004 at 1:05 pm
Curious what there is to come. Database icons ![]()
Custom title at 1,000 posts ?
January 10, 2004 at 12:49 pm
Once again, use the image data type. It's for all kind of binary data.
And take a look at this one.
January 10, 2004 at 12:46 pm
Could a moderator please delete the above post? ![]()
I feel offended
January 9, 2004 at 1:36 pm
If this will ever happen you can
CREATE TABLE [dbo].[Test] (
[IntIdentityCol] [int] IDENTITY (2147483647, 1) NOT NULL ,
[ColB] [varchar] (50) NULL
)
GO
Insert Test values('A') -- Ok 2147483647 get
Insert...
January 9, 2004 at 1:18 pm
I agree with Chris.
Imagine everyone on this forum would have usernames like 5409045121009 ![]()
Now being serious, I...
January 9, 2004 at 12:55 pm
Viewing 15 posts - 2,866 through 2,880 (of 5,356 total)