Viewing 15 posts - 3,136 through 3,150 (of 13,461 total)
cschlieve (7/8/2013)
July 8, 2013 at 10:43 am
Jason both your suspicions are correct:
1 you cannot backup a database that is set offline;
you simply get this error:
Msg 942, Level 14, State 4, Line 2
Database 'MyDatabase'...
July 8, 2013 at 8:52 am
Rakesh.Chaudhary (7/8/2013)
I want this data to be exported to existing EXCEL and...
July 8, 2013 at 8:02 am
sharonsql2013 (7/5/2013)
I declared the primary key as identity int.
Now everytime a value(code) is selected from the grid , I want a corresponding character to be concatenated to the primary...
July 5, 2013 at 12:14 pm
i don't see in what you posted where you granted ABCD\svcaccount permissions in msdb to the procedure sp_start_job; you might have glossed over it, but did you do something like...
July 5, 2013 at 11:44 am
you missed Sean's snippet where you have to use a DAC(Dedicated Admin Connection) in order to see the statsblob; if you do that, the dmv sys.sysobvalues would be accessible.
July 5, 2013 at 9:15 am
select POWER(convert(bigint,2),31) as val into #temp
he was referencing another thread, where someone asked for the max size of a varchar(max);
that thread is here:
http://www.sqlservercentral.com/Forums/Topic1470699-391-1.aspx
i reused my same code example...
July 5, 2013 at 8:18 am
it's not the url itself, it's the target attribute of the a href tag that determines wether it replaces the current palce, or opens a named window or a new...
July 5, 2013 at 7:27 am
Koen Verbeeck (7/5/2013)
select POWER(convert(bigint,2),31) as val into #tempI see what you did there 😉
Recycling is good for the environment 😀
haha! cannot put anything past you! at least i didn't...
July 5, 2013 at 7:06 am
what you can do, however, is create the same trace as the default trace, and modify it from there.
an additional caveat: As far as I know,
a user created trace...
July 5, 2013 at 7:02 am
masoudk1990 (7/5/2013)
Does it have any special meaning?
Does SQL Server have different behavior with them?
Or its...
July 5, 2013 at 6:53 am
the limit's found in BOL, but its basically
select POWER(convert(bigint,2),31) -1
so a Varchar(max) stores a maximum of 2 147 483 647 characters.
July 5, 2013 at 6:47 am
yep, i'm confirming the same thing you are seeing,
i cannot map a domain group to a remote login, even if i know it exists as a login on the server.
i...
July 3, 2013 at 3:06 pm
you also have to check for empty strings when converting to decimal as well
SELECT * FROM tbl WHERE ltrim(rtrim(col)) NOT LIKE '%[^0-9]%' OR ltrim(rtrim(col))=''
empty string converts to zero for...
July 3, 2013 at 2:37 pm
Viewing 15 posts - 3,136 through 3,150 (of 13,461 total)