Viewing 15 posts - 1 through 15 (of 262 total)
But of course question is misleading (as well as explanations).
It reminds me a very old joke:
Answer ONLY YES OR NO!!!
Where have you been yesterday from 8 to 9 pm?
(Correct answer...
December 11, 2008 at 7:45 am
looked at both values:
select current_timestamp, getdate()
2008-12-09 10:56:40.4772008-12-09 10:56:40.477
Didn't notice any difference... According to BOL current_timestamp is an equivalent of getdate().
The only difference is that current_timestamp is a part of...
December 9, 2008 at 9:00 am
1. An empty formatted drive should show less than maximum capacity since formatting itself occupies some space. The space occupied depends on the size of your HDD.
2. When moving your...
December 8, 2008 at 1:57 pm
-- Import the file into an XML variable
declare @xmlimportdata xml
SELECT @xmlimportdata = xmldata
FROM
(
SELECT *
FROM ...
November 24, 2008 at 10:53 am
And the version of the SQL server is ...?
And files are located where... (filesystem, stored in DB)?
November 21, 2008 at 12:54 pm
But then again, which Sunday does the OP want?
Sorry, good question. The next Sunday
November 21, 2008 at 11:13 am
Also, on my server here at work, the above returns tomorrow (Saturday), not a Sunday.
You have to check what are the settings on your server?
select @@datefirst
I believe default is 7...
November 21, 2008 at 11:11 am
Given 2008-11-19 which Sunday do you want, 2008-11-16 or 2008-11-23
Lynn, I hope this is not a question addressed to me? I am not providing interpreter's services 🙂
I just provided a...
November 21, 2008 at 11:03 am
select getdate() + 7 - Datepart(dw, getdate())
November 21, 2008 at 10:45 am
My bad. Try looking here:
http://www.eggheadcafe.com/software/aspnet/30519822/rights-to-execute-jobs.aspx
November 20, 2008 at 12:38 pm
Create a job1 with no associated schedule (your ETL package run).
Create a job2 which is running every Sunday.
Job2 consists of 2 steps.
Step1 - T-SQL - calculate Sunday's dates for current...
November 20, 2008 at 11:54 am
Thank you, Steve.
Interesting article.
I am using ApexSQL Diff in conjunction with VSS ...
November 20, 2008 at 7:34 am
... we use SQL compare from RedGate to produce the scripts that we check into subversion.
Sorry for bringing an initial question to a slightly different direction, but would you please...
November 20, 2008 at 7:15 am
H-m-m...
Are you sure? I was under imression that Subversion does not have a direct integration with SQL server...
November 20, 2008 at 6:57 am
Viewing 15 posts - 1 through 15 (of 262 total)