Viewing 15 posts - 4,156 through 4,170 (of 14,953 total)
Honestly, if I were you, I'd set up a proof-of-concept database, try some sample data that way, and see if it does what you need and what you expect.
It sounds...
June 2, 2011 at 1:41 pm
How do you do what? Store a date with midnight as the time? That'll depend on how you're getting the data into the table. What does your...
June 2, 2011 at 1:38 pm
toddasd (6/2/2011)
June 2, 2011 at 1:36 pm
mtillman-921105 (6/2/2011)
toddasd (6/2/2011)
June 2, 2011 at 1:30 pm
In SQL 2008, there's a Date datatype that can do this. In 2005 and before, the usual thing to do is store a date with midnight as the time.
June 2, 2011 at 1:25 pm
I'm not sure what you mean. I'm assuming "alram tables" is a typo for "alarm tables", but even that doesn't clarify the question for me.
June 2, 2011 at 1:24 pm
Stefan Krzywicki (6/2/2011)
Jim Murphy (6/2/2011)
jcrawf02 (6/2/2011)
I'm going to need to figure out how to hook up with you guys with an ancient, Twitter-impaired phone.
Ha! Maybe you'll all have to...
June 2, 2011 at 12:58 pm
Per http://www.thefreedictionary.com/null, yes, since null is a synonym for zero.
However, most DBAs would assume that null = no assigned value, not null = 0 (linguistic equality as well as mathematic,...
June 2, 2011 at 11:14 am
Generally speaking, it's best to separate IIS and web pages/application from SQL Server, but I understand that can't always be done.
SQL Server Native Client is a way to connect to...
June 2, 2011 at 10:54 am
WayneS (6/2/2011)
June 2, 2011 at 10:44 am
Of course it's true, so long as the ellipse there really means "repeating more nines infinitely".
1/3*3=1
Anyone care to argue with that?
A=B
B=C
hence A=C
Anyone care to argue with that?
If those are true,...
June 2, 2011 at 10:37 am
Try it without the quotation marks.
CREATE TABLE #T (
C1 VARBINARY(10));
INSERT INTO #T (C1)
VALUES (0x1234),(0x4567);
SELECT *
FROM #T
WHERE C1 = '0x1234';
SELECT *
FROM #T
WHERE C1 = 0x1234;
The first one will return 0 rows,...
June 2, 2011 at 10:28 am
Jan Van der Eecken (6/1/2011)
Brings me back to the beginning of my days (pun intended). A different language entirely:
10 Print "I'm not a Re-Curser but I am a Re-Cursor."
20...
June 2, 2011 at 8:12 am
Glad I could help.
Let me know if any of the Cross Apply stuff doesn't make sense.
June 2, 2011 at 7:55 am
Viewing 15 posts - 4,156 through 4,170 (of 14,953 total)