Viewing 15 posts - 26,311 through 26,325 (of 26,484 total)
Well, He has the logic, and the theory behind it. Now he has to apply it and adjust it to his environment. I have asked for help, gotten advice, applied...
November 9, 2006 at 10:35 pm
From his first post:
If we use today for example (Thursday) we would add 6 days to the 21 days.
That looks like a totla of adding 27 days to todays...
November 9, 2006 at 10:25 pm
Based on what he was looking for, 2006-12-06 is the correct answer. Found the next Wednesday meeting and added 21. If you wanted the third Wednesday, change the 21 to...
November 9, 2006 at 10:20 pm
I majored in Computer Science, I minored in Mathematics. Looking for patterns and solutions to them seems to come easy, especially when math is involved.
Hope this helps with what you...
November 9, 2006 at 4:23 pm
How the whole thing works:
Based on Sunday as the first day of the week:
Day Num Days to Add
Sun 1 3
Mon 2 2
Tue 3 1
Wed ...
November 9, 2006 at 2:35 pm
I could try to explain how they work, or better yet, I could just have you read BOL first and then if you have any questions, we can can talk. ...
November 9, 2006 at 2:14 pm
Can't help much on the mass update, but I would suggest doing a search on this site for articles about portable DTS packages. In developing a prototype data warehouse, I...
November 9, 2006 at 1:20 pm
Try the following (it assumes the following default: set datefirst 7 (Sunday is the first day of the week)):
select dateadd(d, (7 - ((datepart(dw, getdate()) + 3) % 7) + 21),...
November 9, 2006 at 1:15 pm
In your data flow where you load the data, you would add a lookup task. You want the records where the lookup on the unique id fails to flow through...
November 9, 2006 at 11:18 am
The domain accounts running our SQL Servers have admin rights. I would also make sure you have another user with sys admin rights besides your own account, not just in...
November 7, 2006 at 10:14 am
It should. However, I would recommend that you backup to a local drive and then copy the backup file to the network share and then if needed delte the local copy...
November 6, 2006 at 1:59 pm
Your destination should look something like this:
\\servername\sharename$\dbbackupfile.bak
If you have a space in the file name, you may also need to surround the entire destination string in double quotes. Personally,...
November 6, 2006 at 1:32 pm
And what about the filename for the backup file? What is it?
November 6, 2006 at 1:18 pm
What exactly are you entering in the destination, and how are you entering it?
November 6, 2006 at 1:09 pm
Post the SQL command you are using to backup your database. It will help in debugging the error. Also, be sure that the user that SQL Server runs under has...
November 6, 2006 at 12:53 pm
Viewing 15 posts - 26,311 through 26,325 (of 26,484 total)