Viewing 15 posts - 1,186 through 1,200 (of 1,346 total)
Short answer is No, not out of the box.
There are some things you can do to the data. at the column level
Todays article
http://www.sqlservercentral.com/columnists/mcoles/freeencryption.asp
But I have always had to have...
July 21, 2005 at 9:59 am
autonomous transaction pragma =
http://www.unix.org.ua/orelly/oracle/guide8i/ch02_02.htm
But what does this have to do with the use, or absense of an identifier.?
Are you trying to guarantee the Key values are synchronous, No gaps?
Is...
July 21, 2005 at 9:52 am
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
Viewing 15 posts - 1,186 through 1,200 (of 1,346 total)