Viewing 15 posts - 1,186 through 1,200 (of 1,344 total)
With Black eye, and scars to prove it ![]()
![]()
July 21, 2005 at 9:28 am
And your restore process happens daily?
Once you have the logs backing and shipping you can delay the restoration, then start up again, Or I would suggest you leave them continuously...
July 21, 2005 at 9:25 am
I do not believe this would be a proper solution to encrypt every column in your table, I would only suggest doing this to "sensitive" Data, Ie SSN,...
July 21, 2005 at 9:16 am
Well, If you post an example of your table,
and some sample data, and also the query you are using, I'm sure someone can look at it, and try to...
July 20, 2005 at 5:16 pm
Sell I would recommend that you do not do embedded sql in your application, but thats just me.
I'm not exactly sure if you can do this so give it a...
July 20, 2005 at 5:14 pm
I guess for clarity, Are you doing differential backups in your maintenance plan?, or Log Backups?
If it is log backups then you do have to apply all the logs in...
July 20, 2005 at 5:09 pm
This is me thinking out loud, but I have done this before with a web hosting company called webhost4life. They support creation of databases and with a sql login, I...
July 20, 2005 at 5:06 pm
Without seeing any of your data, or the query you are using,
the way you are presenting your results I would think that you have to join to some kind...
July 20, 2005 at 3:32 pm
How are you currently summarizing?
Please post your query, and some sample data, and how you would like the output to look. Have a look at this.
Use Pubs
select Stor_ID,
sum(case when...
July 20, 2005 at 3:20 pm
Does your statement look like this?
DECLARE @rowcount INT
INSERT dbo.User_CIS (
User_ID,
Ad_Source
)
VALUES (
@AdSource
)
Select @rowcount = @@rowcount
IF @rowcount > 0
Return -1
This will always evaluate to true, because after your insert, @rowcount will...
July 20, 2005 at 1:40 pm
Not sure why it says that in Books Online, in my opinion Log shipping is not a good solution for moving data to a Reporting database. It is best used...
July 20, 2005 at 10:49 am
In the beginning of your procedure. your setting @rowcount = @@rowcount. Since no operation or query is being run before you set this, it is setting it to...
July 19, 2005 at 3:49 pm
Yes the restore job will fail, hanging up all other restore jobs.
A destination database in log shipping cannot have any open connections during a restore, So attaching an application to...
July 19, 2005 at 3:18 pm
Viewing 15 posts - 1,186 through 1,200 (of 1,344 total)