Viewing 15 posts - 24,046 through 24,060 (of 26,490 total)
You could also bring all the tables together into one table using a partitioned table. You would just have to add a new partition each month. This way,...
October 27, 2008 at 10:35 am
You can add an Execute SQL Task before your package completes that executes the following code:
update dbo.YourTable set
export = 1
where
export =...
October 27, 2008 at 10:27 am
Limiting the number of responses you can post to another users post limits the discuss that can occur with some questions/responses posted. You can learn a lot from these...
October 27, 2008 at 10:20 am
You say you are losing tables when you change compatability levels? Are you losing user tables or system tables?
😎
October 27, 2008 at 9:43 am
WILLIAM MITCHELL (10/25/2008)
It is very easy to change the order of the columns in SSMS if you...
October 27, 2008 at 9:29 am
I find I stay a way from sites that charge a fee for joining, which is one big reason I like SSC. I can get help here when I...
October 27, 2008 at 8:39 am
I know many people who use the BEGIN END even if there is only one statement. They do it so that if they need to add additional statements later,...
October 27, 2008 at 8:12 am
We are deploying Hyperbac at my current employer. It does what we need, allows us to use native SQL Server Backup/Restore commands, does well on compression, and has decreased...
October 24, 2008 at 10:18 pm
Books On-Line (BOL) is the best place for you to start reading. As you read through the various parts regarding security and still have questions, don't hesitate to jump...
October 24, 2008 at 10:04 pm
GilaMonster (10/10/2008)
Brandie Tarvin (10/10/2008)
I've actually stumped people with simple backup & restore questions of all things. You'd think *that* particular subject matter would be basic to everyone's DBA knowledge.
Oh, please......
October 24, 2008 at 9:46 pm
Well, first of all, I had to fix the code you posted. Both tests ran the same stored procedure. After fixing the code, yes the stored procedure with...
October 24, 2008 at 9:40 pm
Okay, freaky!! That's where my thoughts were also!
😎
October 24, 2008 at 3:27 pm
Me too! Our problem was we were focused on trying to figure out why the query wasn't working instead of finding an alternative that would.
😎
October 24, 2008 at 3:22 pm
Then I'd try this:
select
obitno,
oaorsc
from
hsdet
inner join hshed
on...
October 24, 2008 at 3:14 pm
Just a guess, but try this:
select
obitno,
oaorsc
from
hsdet
inner join hshed
...
October 24, 2008 at 2:42 pm
Viewing 15 posts - 24,046 through 24,060 (of 26,490 total)