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...
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
September 26, 2005 at 10:50 pm
I had to refresh the page to see the story or Steve fixed the problem.
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
September 14, 2005 at 10:35 am
No problem. You might try to post in the data warehousing/DTS forum.
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
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.
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
September 12, 2005 at 9:25 am
There is a setting called ForceExecutionResult that you can set so that the task always completes successfully.
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
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)
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
September 7, 2005 at 9:15 pm
Thanks for the information.
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
September 6, 2005 at 4:04 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...
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
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...
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
August 30, 2005 at 3:50 pm
You'll have to restore the db somewhere else and DTS the table.
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
August 30, 2005 at 2:45 pm
Better to avoid dynamic SQL if possible!
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
August 29, 2005 at 8:31 am
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.
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
August 28, 2005 at 6:21 pm
Try 127.0.0.1 or try "(local)" instead of the IP.
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
August 28, 2005 at 2:33 pm
Try something like this:
thisDate = now()
dim formattedDate
formattedDate = datePart("d",ThisDate) & "/" & datePart("m",ThisDate)
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
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...
Aunt Kathi Data Platform MVP
Author of Expert T-SQL Window Functions
Simple-Talk Editor
August 28, 2005 at 2:15 pm
Viewing 15 posts - 256 through 270 (of 583 total)