Viewing 15 posts - 256 through 270 (of 443 total)
February 10, 2010 at 4:36 am
A linked server maybe? See here
February 10, 2010 at 4:26 am
Two options I can think of:
1. Put the pasword in another table, (along with a FK back to the logins table) and alter permissions on this table to control...
February 10, 2010 at 4:14 am
See the section on string splitting in Jeff Moden's tally table article. Link is in my sig below
Edit: Apologies I see that somone has already pointed you to that article...
February 9, 2010 at 7:18 am
CirquedeSQLeil (2/8/2010)
I think the offspring of the thread is causing some problems with the Site. Anybody else notice some timewarp delays at SSC throughout the day today?
No, but I...
February 9, 2010 at 2:15 am
lmu92 (2/8/2010)
nigel. (2/8/2010)
My hamster just fell through a distortion in the space-time continuum. Is it possible to get him back using DBCC TIMEWARP. Please help, he was my best friend.
Ooops!
Could...
February 9, 2010 at 2:12 am
george sibbald (2/8/2010)
Its possible if you have some of its poo.
Oh yeah, plenty of s*** round here :-). Gotta make sure I use the right sample, or could recreate...
February 8, 2010 at 9:10 am
My hamster just fell through a distortion in the space-time continuum. Is it possible to get him back using DBCC TIMEWARP. Please help, he was my best friend.
February 8, 2010 at 7:51 am
scottsimpson (2/4/2010)
...I don't see a clean way of doing this without doing a while loop counting the days as I go.
Yes, use the DATEADD function, see: http://msdn.microsoft.com/en-us/library/ms186819.aspx
Edit: Sorry, misread your...
February 5, 2010 at 8:25 am
Paul,
Thanks. Here's hoping I get a chance to install 2008 soon.
February 3, 2010 at 4:57 am
How would a LEFT OUTER JOIN perform compared to the MERGE?
(for us lesser mortals trapped with older versions :-))
SELECT
t1.TranID, t1.TranDate, t1.TranCode, t1.Amount
from
#Transactions t1
LEFT OUTER JOIN
#VendorExport t2 on...
February 3, 2010 at 2:20 am
Good, glad you understand that you can't update an integer column with a character value.
In general, any column can contain a NULL unless specifically prevented in the table definition...
February 1, 2010 at 5:01 am
Viewing 15 posts - 256 through 270 (of 443 total)