Viewing 15 posts - 1,171 through 1,185 (of 1,415 total)
ramyours2003 (2/24/2014)
...
CREATE TABLE [TEMPDB].[DBO].[DB_ROLES](
...
this is the script which iam executing ..
Make sure your server isn't using a case sensitive collation, if it is, you might want...
February 24, 2014 at 12:56 pm
Sean Lange (2/24/2014)
patrickmcginnis59 10839 (2/24/2014)
Sean Lange (2/24/2014)
patrickmcginnis59 10839 (2/24/2014)
GilaMonster (2/23/2014)
Jim Arko (2/23/2014)
SET @sqlstring = 'UPDATE table SET column = ' +...
February 24, 2014 at 11:12 am
dannayakrahul (2/22/2014)
Thank you for your response i dont know exactly how to develop a query to that problem that is why i have kept the question with some practical data...
February 24, 2014 at 10:00 am
Sean Lange (2/24/2014)
patrickmcginnis59 10839 (2/24/2014)
GilaMonster (2/23/2014)
Jim Arko (2/23/2014)
When using dynamic T-SQL you need to concatenate the variables.
SET @sqlstring = 'UPDATE table SET column = ' + @variable
Sure, if you want...
February 24, 2014 at 9:39 am
GilaMonster (2/23/2014)
Jim Arko (2/23/2014)
When using dynamic T-SQL you need to concatenate the variables.
SET @sqlstring = 'UPDATE table SET column = ' + @variable
Sure, if you want a nice little SQL...
February 24, 2014 at 8:58 am
jay-h (2/20/2014)
patrickmcginnis59 10839 (2/20/2014)
teresalinus (2/20/2014)
February 20, 2014 at 11:02 am
teresalinus (2/20/2014)
February 20, 2014 at 8:06 am
Kumar Arumugam (2/17/2014)
Dave-148053 (8/17/2009)
February 17, 2014 at 12:44 pm
Craig-315134 (2/12/2014)
Sooner or later, the balance sheets catch up with them.
That's one of the more positive...
February 15, 2014 at 1:33 pm
I like prepaid credit cards for this sort of thing.
February 15, 2014 at 9:03 am
Just a possibility, you might want to check to see if your SQL user accounts have a password expiration policy set.
select name, is_policy_checked
from sys.sql_logins
(shamelessly stolen from this thread: http://www.sqlservercentral.com/Forums/Topic397068-338-1.aspx)
edit:...
February 15, 2014 at 8:46 am
Something you might consider, make a directory on that share while logged in with that agent userid, then try to backup to a file within that directory.
Sometimes I like to...
February 7, 2014 at 2:02 pm
As it stands, you are using the minimum price from Vend2Part for ANY partid, not just the one that you're interested in for any given row.
maybe replace
(Select Min(Price) From Vend2Part)
with
(Select...
February 7, 2014 at 1:11 pm
T_Peters (2/7/2014)
I tried changing it to UNC, but the backup still failed. The error messages are slightly different
to disk = 'Z:\backup\...' Operating system error 3(The...
February 7, 2014 at 12:48 pm
GilaMonster (2/4/2014)
Evil Kraig F (2/4/2014)
February 6, 2014 at 2:46 pm
Viewing 15 posts - 1,171 through 1,185 (of 1,415 total)