Viewing 15 posts - 1,666 through 1,680 (of 6,395 total)
Not without seeing the full query, but sounds like you have a syntax error near - on line 19
November 20, 2015 at 2:07 am
As with anything licensing, you should speak to Microsoft directly or your Microsoft reseller, and always ensure you get the final in email to cover your backs, as licensing is...
November 20, 2015 at 1:30 am
IIRC, it applies to all databases
Edit, yep MSDN details 1118 is a global traceflag so applies to all DB's
November 19, 2015 at 8:09 am
Mail admins eh? Can't live with them and can't live without them.
November 19, 2015 at 7:42 am
Grant Fritchey (11/19/2015)
GilaMonster (11/19/2015)
Phil Parkin (11/19/2015)
The caveat to this is that if someone created the DB and specified upon creation that the file extensions should be .sql instead of mdf/ndf/ldf...
November 19, 2015 at 7:41 am
.sql is the extension of a script file not a database, its not an mdf/ndf/ldf file and thus cannot be attached or detached from SQL.
The caveat to this is that...
November 19, 2015 at 5:47 am
The problem I find with the sequence in this case is there will be a hell of a lot of sequences and the need for dynamic sql to build up...
November 19, 2015 at 4:38 am
Ed Wagner (11/19/2015)
anthony.green (11/19/2015)
Ed Wagner (11/18/2015)
42Answer
Question
Mark
November 19, 2015 at 4:24 am
Maximum length data types are not indexable
Index key length maximum is 900 bytes.
Int is 4 bytes, that leaves 896 bytes, so you will need to change your varchar(max) to varchar(896)...
November 19, 2015 at 4:06 am
I'd say you would need another 5 disks
One for the instance binaries,
One for TempDB
One for User Data
One for User Logs
One for Backups
Wouldn't advise putting all of them on one drive,...
November 19, 2015 at 4:01 am
SQL 2014 is supported on Server 2008R2 SP1 or above, so aslong as the cluster is running atleast OS service pack 1 you will be fine to install it.
However, does...
November 19, 2015 at 3:56 am
SQL sent the mail successfully to your SMTP server.
Speak with your mail admins again to see if the old SMTP server is still alive. It may just have its...
November 19, 2015 at 3:53 am
I can see where the OP is coming from.
A solution like FreshBooks would be an ideal example of what the OP wants.
Multiple clients sign up to the companies invoicing system,...
November 19, 2015 at 2:56 am
Robert vd Berg (11/19/2015)
Is this what your looking for?SELECTdbo.agent_datetime(run_date, run_time)
FROMsysjobhistory;
+1, learned something new with that, didn't even know that function existed.
November 19, 2015 at 2:21 am
Viewing 15 posts - 1,666 through 1,680 (of 6,395 total)