Viewing 15 posts - 256 through 270 (of 583 total)
Just back to my room after a long day at the PASS pre-conference. The pre-conference seminar I attended covered many of the new features of SQL 2005. It was presented...
September 26, 2005 at 10:50 pm
I had to refresh the page to see the story or Steve fixed the problem.
September 14, 2005 at 10:35 am
No problem. You might try to post in the data warehousing/DTS forum.
September 12, 2005 at 9:30 am
This is an SSIS thing. I kind of assumed that you were working in SSIS since this particular forum is for SQL 2005.
September 12, 2005 at 9:25 am
There is a setting called ForceExecutionResult that you can set so that the task always completes successfully.
September 12, 2005 at 8:47 am
Try this:
delete M
from Milestones M
where not exists (select *
from GeneralInfo join Imports
on GeneralInfo.XNumber = Imports.XNumber
where GeneralInfo.YNumber = M.YNumber)
September 7, 2005 at 9:15 pm
I talked with a developer at MS about this. He said that the parameters for each provider is different and right now, there is no source listing the differences. There...
August 31, 2005 at 10:42 am
When you run the DTS package, it runs with your account, rights and drive mappings. When it runs a job it runs as whatever account is used to start up SQL...
August 30, 2005 at 3:50 pm
You'll have to restore the db somewhere else and DTS the table.
August 30, 2005 at 2:45 pm
What technology is used for the report? If it is a custom built report, part of your web application, just change the connection string each time the report runs.
August 28, 2005 at 6:21 pm
Try 127.0.0.1 or try "(local)" instead of the IP.
August 28, 2005 at 2:33 pm
Try something like this:
thisDate = now()
dim formattedDate
formattedDate = datePart("d",ThisDate) & "/" & datePart("m",ThisDate)
August 28, 2005 at 2:25 pm
Have you worked with any technology to do this in school? If so, maybe the best way is the way that you know. Otherwise, ASP.NET using either C# or VB.NET...
August 28, 2005 at 2:15 pm
Viewing 15 posts - 256 through 270 (of 583 total)