Viewing 15 posts - 5,101 through 5,115 (of 5,590 total)
GilaMonster (7/2/2009)
WayneS (7/2/2009)
Is there a way to tell when / how often a file has grown in the past?Default trace, for as far back as it goes.
Thanks Gail!
July 2, 2009 at 5:06 pm
latingntlman (7/2/2009)
July 2, 2009 at 5:03 pm
There are a couple of other actions that sp_change_users_login can use besides report... these just happen to fix the orphaned user. Check out BOL for the procedure.
July 2, 2009 at 4:59 pm
While reading through this thread, it dawned on me that this is something that I failed to check on with my new job. 🙁
Is there a way to tell...
July 2, 2009 at 1:24 pm
Nag (7/2/2009)
'+ @dbname +' as Databasename,
Nag, (cute tag...)
change this to:
'+ QuoteName(@dbname, char(39)) +' as Databasename,
That should resolve your issue.
July 2, 2009 at 7:31 am
The only time a new row will be placed in any kind of order is if you have a clustered index on the table. Then it will place the new...
July 2, 2009 at 7:26 am
Pretty much. I can't think of any other way; perhaps someone else will pipe in with an alternate suggestion.
July 2, 2009 at 7:11 am
only4mithunc (7/1/2009)
Is there any way to make the column name dynamic in SQL 2005 ? The situation is in a select statement there is one case statement , based...
July 1, 2009 at 3:52 pm
Thank you for posting your solution.
To answer your first question (how to avoid putting name in the group by), you can use an aggregrate function on the name in the...
July 1, 2009 at 3:41 pm
mtassin (7/1/2009)
say something like this..
select * from addressinfo
where
contains(address1,'"*red*"')
I'd expect it to find words that begin with red such as redding, redbird, redmond, etc... as well as just the...
July 1, 2009 at 3:37 pm
Lynn Pettis (7/1/2009)
I need you to give me a script that will automagically determine what records to delete from unspecified tables.I mean really, you want fries with that too?
Just in...
July 1, 2009 at 3:33 pm
Do you think that this poster is the same one we had earlier that deleted all of his posts?
July 1, 2009 at 3:28 pm
raghu,
May I ask why you felt it necessary to delete your initial post? The problem you were having may be useful to someone else; without your problem description they would...
July 1, 2009 at 3:27 pm
JALB (7/1/2009)
July 1, 2009 at 10:44 am
Dave,
Here's a solution that eliminates the dynamic sql.
-- declare and set the looping variables
DECLARE @Count INT, @Month INT
SET @Count = 1
SET @Month = 5
-- build a table to hold the...
July 1, 2009 at 9:23 am
Viewing 15 posts - 5,101 through 5,115 (of 5,590 total)