Viewing 15 posts - 301 through 315 (of 1,193 total)
Went for none of the above as I thought SQL would fall over on 'column'...
October 15, 2014 at 2:51 am
Yep, perfectly possible.
The deployment target is set in the solution settings - open the solution in BIDS and right click on the Solution in the solution explorer, and select Properties....
October 14, 2014 at 8:46 am
Hi Kevin,
Compression was introduced with SQL 2008 so I'm pretty sure your database isn't compressed.
I think your best course of action is to take a backup and then compress the...
October 3, 2014 at 4:36 am
You'll need to use the ALTER SCHEMA command to change the schema, a rename won't work.
October 1, 2014 at 8:54 am
My query along those lines goes via the sys.indexes table:
FROM sys.objects o
INNER JOIN sys.indexes i ON i.object_id = o.object_id
INNER JOIN sys.partitions p ON p.object_id = i.object_id AND p.index_id = i.index_id
Note...
October 1, 2014 at 8:34 am
Lynn Pettis (9/30/2014)
How silver spoon can you get???
I nearly kicked off at that, but managed to click off the page in time 🙂
Absolutely robbing a living he is.
October 1, 2014 at 6:23 am
ScottPletcher (9/30/2014)
FWIW, my code for computing max possible row length returns a length of 11870 for that table.
Cheers Scott, I did it by eye & calculator so I'd trust your...
September 30, 2014 at 10:13 am
arrjay (9/30/2014)
September 30, 2014 at 6:58 am
arrjay (9/30/2014)
Apologise to keep this going but I was wondering why SQL qould not more the MAX field (the field that i'm updating) onto a separate page? Thanks All!!
I'm...
September 30, 2014 at 5:00 am
Koen Verbeeck (9/29/2014)
arrjay (9/29/2014)
September 29, 2014 at 6:17 am
ChrisM@Work (9/29/2014)
arrjay (9/29/2014)
September 29, 2014 at 6:14 am
Can you provide the full error message, and the configuration values you've set in Database Mail (excluding any sensitive data of course)?
Thanks
September 29, 2014 at 5:39 am
Some info here on an (oddly identical) post from 18 months ago...
If the table was being truncated and there's no FK's referencing the table, could you not just issue drop...
September 25, 2014 at 5:43 am
What datatype is CS.Value ?
If datetime/smalldatetime then simply
SELECT CONVERT(varchar(10),CS.Value,101) AS [BeginningDate]
September 24, 2014 at 10:02 am
Viewing 15 posts - 301 through 315 (of 1,193 total)