Viewing 15 posts - 1,861 through 1,875 (of 2,647 total)
agbondoc (1/25/2012)
You are correct that I am new to this forum and I will read (if time permits) the reference you sent and educate myselt on the "forum standards"....
January 25, 2012 at 7:54 am
You could execute this procedure as such...
DECLARE @returnVal INT;
EXEC [dbo].[LitespeedBackupDB] @Dbname = '<database name>', @BackupPath = '<backup path>', @retval = @returnVal OUTPUT;
SELECT @returnVal;
January 25, 2012 at 7:51 am
CELKO (1/24/2012)
You then ask us to divide these into the foo_types, but we have no rules for that division. We have no idea how many foo_types and if they are...
January 24, 2012 at 8:58 pm
Did you ever run sp_change_users_login 'auto_fix', '<login>'
January 24, 2012 at 3:07 pm
I think that the "easiest" way is to run the features discovery from the install disk.
January 24, 2012 at 2:58 pm
bill.akin (1/24/2012)
select count(member_number), member_time.date
from member_time
where member_time.date >=convert(date,DATEADD(dd,-1,GETDATE())) and member_time.date <=convert(date,dateadd(dd,-7,getdate())
group by...
January 24, 2012 at 2:17 pm
ramses2nd (1/24/2012)
January 24, 2012 at 1:06 pm
Just curious... In your sample data are you giving us the entire actual table, or not? My guess is that there is a clock in datetime and a clock...
January 24, 2012 at 12:55 pm
Steve Jones - SSC Editor (1/24/2012)
Switching to simple breaks your recovery chain, if you are backing up logs and expecting to recover to a point in time.
I think he is...
January 24, 2012 at 12:37 pm
I had a member of our ops department come in the other day and ask why he couldn't restore a backup he had of the accounting database (for some reason...
January 24, 2012 at 12:32 pm
What happens when the schema is not dbo?
January 24, 2012 at 12:04 pm
L' Eomot Inversé (1/24/2012)
Lian Pretorius (1/24/2012)
dwilliscp (1/24/2012)
January 24, 2012 at 11:43 am
What exactly was the issue? You really haven't explained anything here; kind of like saying my computer doesn't work and just leaving it at that 🙂
Can you please post sample...
January 24, 2012 at 10:27 am
While we wait for your sample data, you can look at the DATEDIFF or DATEADD functions.
January 24, 2012 at 10:23 am
Can you please provide sample data and table DDL in the form of SQL statements. See this article for reference:
http://www.sqlservercentral.com/articles/Best+Practices/61537/
January 24, 2012 at 10:21 am
Viewing 15 posts - 1,861 through 1,875 (of 2,647 total)