Viewing 15 posts - 5,221 through 5,235 (of 6,486 total)
Keeping the "don't split things unless there's a good reason to" discussion in mind - if you are implementing a 1-to-1 relationship, then yes - it can be appropriate to...
January 16, 2008 at 9:12 am
By the way - another trick if you still can't find this thing:
Dust off a copy of SQL2000's Query analyzer, and use its Object Search ability to find this thing...
January 16, 2008 at 9:07 am
From what I can tell - yes.
If I log in to the DB as SA and go to a user DB, then query for an object I know...
January 16, 2008 at 8:55 am
What about making a new DB owner/changing the DB owner. Use something like sp_changeDBOwner.
If need be - detach the DB - attach it to a database instance you have...
January 16, 2008 at 8:43 am
coming right up!
create table ToUnpivot (myGroupname varchar(20), val1 int, val2 int, val3 int)
insert ToUnpivot
select 'aaa',1,2,3 UNION ALL
select 'bbb',10,12,13 UNION ALL
select 'ccc',21,22,23 UNION ALL
select 'ddd',1,2,3 UNION ALL
select 'eee',11,12,13 UNION...
January 16, 2008 at 8:17 am
sounds like those guys shooting turkeys as plane windshields....:hehe:
January 16, 2008 at 8:03 am
Ah - the visual... No wonder you were having trouble: you want to UNPIVOT, not PIVOT...:)
January 16, 2008 at 8:02 am
Jeff Moden (1/14/2008)
suma (1/14/2008)
i tryed sys.all_object, sys.procedures but no luck.
Sorry, didn't see that... if you can't find it there, then I don't know where it might be, especially if you're...
January 16, 2008 at 7:58 am
There is only if the database is set up to record (in a column) the time the data was entered. It's not an uncommon thing, but I'm assuming you...
January 16, 2008 at 7:48 am
Or you can perform a "differential log backup". Meaning - once a day you perform a log backup in its "default" format (which truncates the log for you), and...
January 16, 2008 at 7:41 am
Abraham -
I'm not quite sure I get specifically what you're looking to do. You might be able to do this with a PIVOT (or the old-style version of...
January 16, 2008 at 7:28 am
Jeff Moden (1/16/2008)
January 16, 2008 at 7:19 am
It's going to tend to drop connection, so it would be a good idea not to do it when users are connecting. It's more like it will drastically slow...
January 15, 2008 at 7:03 pm
you can double-check if you have the default reports installed. From within SSMS, right-click on the database name, then Report>>Standard Reports>>Disk Usage.
You'll have to do that...
January 15, 2008 at 6:13 pm
it all depends on whether your data is growing quickly or not. I would check in in a day or two and see how fast it's growing.
If you have...
January 15, 2008 at 5:53 pm
Viewing 15 posts - 5,221 through 5,235 (of 6,486 total)