Viewing 15 posts - 556 through 570 (of 588 total)
Zip it with a password and unzip it trough your software installer?
Or some variation of encryption.
February 22, 2007 at 12:24 pm
Look up
"Trace Events for Use with Event Notifications"
and
"Designing Event Notifications"
in Books Online. I think you should be able to do what you want using that as a...
February 22, 2007 at 11:24 am
I too am in the camp of not liking it, at least not as a primary way of storing data. We do use XML though in the company I now work...
February 22, 2007 at 8:30 am
Supposedly they added this functionality back in in SP2. Haven't had time to test it yet myself though
February 20, 2007 at 9:14 am
Maybe you would do this if you had 2 different product lines, but needed to have unique product numbers between the two lines? And the developer did not know how...
February 16, 2007 at 7:27 am
Something like this?
Select Phone1, Phone2, Phone3 from Table
where Phone1 = Phone 2
or Phone1 = Phone3
or Phone2 = Phone3
February 16, 2007 at 6:49 am
Not sure I would use partioning for this, but then I grew up on a farm and like to keep things simple!
How about...
February 14, 2007 at 1:47 pm
Have you considered using DDL triggers instead?
I use the one below, it saves any DDL statements in a table and I have a job that every morning sends me a...
February 14, 2007 at 7:39 am
I think the datatype would have to be decimal(8,0) to store enough data to do this. Try this simpe example, maybe it can help you out.
create
February 12, 2007 at 2:36 pm
AC/DC - pick any, but Back in Black #1
Metalica - Master of Puppets
Dixie Chicks - either one, like the new one the best
Gretchen Wilson - either
Helsinki Philarmonic playing Grieg
(yes I...
February 9, 2007 at 8:55 am
Maybe to have something else happen just because there was no records affected?
February 9, 2007 at 7:38 am
Or my really quick and dirty one
select name
into #t
from syscolumns
where id = object_id('growthdetails')
create table #result (
ColName varchar(30),
NullCount int)
declare @qry varchar(500), @columnname varchar(30)
select...
February 8, 2007 at 1:54 pm
Just tried this and it seems to work fine. Here is my query:
select
datediff(mi,
February 8, 2007 at 1:18 pm
xp_cmdshell and the net stop command. Although that might give you a problem with starting it if run directly in an agent. I once upon a time had a server...
February 8, 2007 at 12:56 pm
Couldn't see if this was mentioned, but what about the SQL Error log? Does it even start one whenever you try to start SQL? The error log is in text...
February 8, 2007 at 6:24 am
Viewing 15 posts - 556 through 570 (of 588 total)