Viewing 15 posts - 4,531 through 4,545 (of 13,460 total)
tipping my hat to Sean, we travel in the same circles so often!
Thanks for the honorable mention, my friend!
Lowell
October 22, 2012 at 12:03 pm
kapil_kk (10/22/2012)
how can we restricted a view to a particular user only?
you can do that either by checking the suser_name(), or comparing it agasint a table of permissions you create.
a...
Lowell
October 22, 2012 at 11:13 am
Jim the single set of double quotes is an xp_cmdshell thing;there's only the classic extra-step work arounds.
the work around is to either use a variable, or create it in a...
Lowell
October 22, 2012 at 11:06 am
jasona.work (10/22/2012)
Using your Delete commands, plus adding one to delete from dbo.sysmail_mailitems, the DB is down to about 23GB from 133GB!
Set up an Agent job to run...
Lowell
October 22, 2012 at 9:54 am
the http://www.ssmstoolspack.com/ is free and very popular among some of the psoters here.
it has a built in CRUD generator, so you can right click on a given table and it...
Lowell
October 22, 2012 at 9:03 am
i've played with Microsoft.SqlServer.Management.Smo.Scripter that is part of the microsoft.sqlserver.managment.sdk.sfc ;
using that, you can tokenize any SQL statement.
i did it when i was playing with making my own SQL reformatter/prettifier,...
Lowell
October 22, 2012 at 8:27 am
matt.gyton (10/22/2012)
These are just standard SQL Agent Jobs being run on a schedule, so I'm assuming I could just change the default language setting for the login they are...
Lowell
October 22, 2012 at 7:09 am
sanjay.dakolia (10/22/2012)
this value was suppose to be datetime but by mistake the column datatype was given integer so now i want to convert it back to datetime
um, i don't think...
Lowell
October 22, 2012 at 6:30 am
sanjay.dakolia (10/22/2012)
i am using the following query :
select cast (1157068800 as datetime)
but i am getting this error :
Msg 8115,...
Lowell
October 22, 2012 at 6:21 am
you mean like resolving %appdata% or %path% from a command line or something like that?
yes, assuming you've enabled xp_cmdshell;
create table #Results (
ID int identity(1,1) NOT NULL,
TheOutput varchar(1000))
insert into #Results (TheOutput)
exec...
Lowell
October 22, 2012 at 6:17 am
those set options are connection specific; they are not server wide.
just because you set it someplace, does not mean it's going to affect jobs or anything else on the...
Lowell
October 22, 2012 at 6:10 am
probably the best most recommended way would be using the delimited split function.
there's also a CHARINDEX2 custom function you could use as well.
/*
--Results
val ...
Lowell
October 22, 2012 at 5:44 am
Jeff when i did a project using rssbus for quickbooks i ended up writing an applicati:-Don that read qb info into tables on my server, so i had snaphots of...
Lowell
October 21, 2012 at 7:36 am
relaying is forwarding/sending to email addresses that are not administered by the specific server you are conecting to...for example, if my server is the google's gmail, then emails to @sqlservercentral.com...
Lowell
October 20, 2012 at 5:49 am
Aijaz Ahmed Mir (10/19/2012)
thanks for your reply. is there any tool/script to extract the documents.regards
aijaz
this is a job for a programming language; here's an example in vb.net for the...
Lowell
October 19, 2012 at 1:52 pm
Viewing 15 posts - 4,531 through 4,545 (of 13,460 total)