Viewing 15 posts - 6,391 through 6,405 (of 13,469 total)
psjrw (11/17/2011)
I'll check out the Windows Authentication. Thanks for your time.
with GoDaddy being shared hsoting, you get SQL users only for access to your SQL instance.
you might consider storing...
November 17, 2011 at 1:37 pm
make sure the string is a single line when sent to the cmd :
create table #Results (
ID int identity(1,1) NOT NULL,
TheOutput varchar(1000))
declare @cmd as varchar(8000)
set @cmd = ' ren c:\sgrs\SGRS_SGCTCentral_7_20111111102846.rar...
November 17, 2011 at 9:44 am
river1 (11/17/2011)
I need to do it in t-sql.

November 17, 2011 at 9:36 am
email is raw text mode or html mode?
is that a static footer/email, or are the elements pulled dynamically in a SQL statement?
November 17, 2011 at 7:37 am
SQLRNNR (11/17/2011)
It really depends on the organization as to where the DBA falls...
November 17, 2011 at 5:55 am
for me, there's serveral flavors of DBA's..there sthe DBA that does what yuo are probably doing...mostly administrative, handling backups, traces and the servers themselves.
a Development DBA, which (for me anyway)...
November 17, 2011 at 5:38 am
Charmer (11/17/2011)
2nd table has TrackID(primary key,automatic generated) , RlseId(foreign key of 1st table) and RlsTrackId...but no date time...
November 17, 2011 at 5:34 am
in that case, i usually just do a SELECT * INTO table_Bak
FROM Table;
with that it's very easy to update the original table from that side by side table in the...
November 16, 2011 at 2:35 pm
hybrid of the wide table idea?
do those 1024 columns logically break into groups that could be, say 4 or 5 other tables? (measurement types?)then you have , dunno, 5 tables...
November 16, 2011 at 1:04 pm
stop connections permanently, like using the firewall to ignore all traffic from the webserver?
i'd go firewall first, a login trigger would work for an entirely SQL solution, but the hostname...
November 16, 2011 at 11:53 am
yeah i'd consider either dynamic sql as suggested, or breaking this up into 4 procedures.
a master proc that ends up returning one of 4 proc results based on the parameters;
my...
November 16, 2011 at 11:40 am
you can grant insert permissions to public for it.dbo.AlterLogin, i *think* that will resolve the audit issue;
i've done the same, but i've been sticking my audit table in master.
USE...
November 16, 2011 at 9:57 am
i'm trying to think this through, does this sound right to everyone?
SQL retrieves the data in what the query engine deems is the fastest way possible, and caches that execution...
November 16, 2011 at 9:01 am
Steve Malley (11/16/2011)
November 16, 2011 at 8:43 am
The sql plan you posted is returning a query with 247,958 rows? is that right?
an SSRS report should not be presenting a quarter million rows of data for anyone...
November 16, 2011 at 7:42 am
Viewing 15 posts - 6,391 through 6,405 (of 13,469 total)