Viewing 15 posts - 4,426 through 4,440 (of 13,469 total)
Darth do you have a Calendar table?
for me, business days, well, depend on our specific business.
for example, the quarter for today's date is from 10/1/2012 to 12/31/2012.
there are 92...
November 12, 2012 at 8:23 am
on my dev machine I have the last 4 versions of SQL installed.,and i have a port layout scheme to make it obvious to myself,
my default instance is 2005 listening...
November 12, 2012 at 6:07 am
in 2005, there's the surface area configuration utility to add yourself:

in 2008, you need to start the service in single user mode, and add yourself.
November 12, 2012 at 5:25 am
Artoo22 (11/12/2012)
kapil_kk (11/3/2012)
I want to create non clustered index on a view to check the limit that how many non clustered index can be created on a view.Why?
i think it's...
November 12, 2012 at 5:21 am
that package adds the ACE drivers, which are not the same as the OleDB.
it's just like adding the drivers for MYSQL, SQLite or any of the many ODBC drivers for...
November 12, 2012 at 5:15 am
Sanjay openrowset does not allow variables...it must be a static string inside single quotes. Replace @image with 'c:/filename'
You could build an openrowset as a string and use dynamic sql instead
November 11, 2012 at 4:45 am
instead of dropping and recreating, it would be much faster and easier to generate code to simply rename the existing constraints.
this is what i would do:
/*
EXEC sp_rename 'DF__SFHEAD__MSLOAN__51278362','DF__SFHEAD_MSLOAN'
EXEC sp_rename 'DF__SFHEAD__URUSEAMT__2D8A0CC1','DF__SFHEAD_URUSEAMT'
EXEC...
November 9, 2012 at 9:27 am
ok clue me in, because i'm not seeing it...
what difference does it make on # of logical cores?
why not calculate, say 7/8ths of the total available memory for the SQL...
November 9, 2012 at 6:22 am
here's an example that kind of shows what we are talking about...you have to select from all possible values, and join that to what was sold.
run this and take a...
November 8, 2012 at 2:32 pm
yogi123 (11/8/2012)
Helloin one table, i need to find from which sql account, table got insert , update and delete.
so please help me, how i track this
Thanks
Unless you've already setup a...
November 8, 2012 at 12:13 pm
Received an pm asking for more details on the programming portion of this, as CLR can be a bit scary the first time around.
hopefully, this can get someone started, but...
November 8, 2012 at 12:08 pm
these two queries seem to return all the objects and all the assemblies:
EXEC sp_MSforeachdb 'SELECT ''?'' As DBName,
...
November 8, 2012 at 10:14 am
I'd do exactly what Sean is recommending...I'd have a service slam the web site and store the results in a table, all outside of TSQL.
Now, having said that, just to...
November 8, 2012 at 8:08 am
here's a TSQL method, which generates the actual REPLACE statements you would want to use to remove the css style assignment, if it exists.
Notice how i'm generating a lsit of...
November 8, 2012 at 6:02 am
Viewing 15 posts - 4,426 through 4,440 (of 13,469 total)