Viewing 15 posts - 3,226 through 3,240 (of 13,469 total)
well, syntax wise, it's fine for SQL2008; i was able to create it without a problem.
on a SQL2005 or compatibility 90 database, i get an error because SQL2005 did not...
June 26, 2013 at 7:33 am
i would do a backup and restore as -a-new-database name so both sources are on a single instance, and then review the differences for either specific insert/update/delete, or a MERGE...
June 26, 2013 at 7:10 am
mister magoo i have a kinda-sorta solution i use for that issue; instead of a drag and drop, i have a keyboard shortcut in SSMS that i call on any...
June 26, 2013 at 6:19 am
psingla (6/26/2013)
if (select TOp 1 UNITE_COUT_MATERIEL from DIM_INTER_MATERIEL)= 'Unité'
or
if exists (select 1 from DIM_INTER_MATERIEL where UNITE_COUT_MATERIEL = 'Unité')
both the above query will work in your case.
sub query...
June 26, 2013 at 5:56 am
if you know the shape of the data being output from the procedure, you can insert it directly into a table;
for example, if your proc returns a single column table...
June 26, 2013 at 5:52 am
you have two queries that could potentially be comparing more than one row to a single value;
one is a simple test for a value:
if (select UNITE_COUT_MATERIEL from DIM_INTER_MATERIEL) =...
June 26, 2013 at 5:47 am
you still will need occupied/empty records at the individual seat level; you might organize them in cubes, but your level of detail is deeper;
i'd also like to see the DDL...
June 25, 2013 at 2:04 pm
Sean Lange (6/25/2013)
Lots of completely vague posts and suddenly, voila! The OP posts a complete...
June 25, 2013 at 1:33 pm
that's an application error,and not SQL server.
a lot of applications will have a default connection timeout of 30 seconds, unless someone explicitly adds some longer timeouts to the connection string.
if...
June 25, 2013 at 1:21 pm
lmacdonald (6/25/2013)
However my linked server is actually on the same machine, but another instance. There is a syntax error, it does not like...
June 25, 2013 at 12:39 pm
lmacdonald (6/25/2013)
Yes but those DDL commands often specify a from clause which is where I can put in the linked server. These do not.
ahh, you missed the point.
I created...
June 25, 2013 at 12:25 pm
For Linked servers, i know you can do DDL commands, like CREATE TABLE, via EXECUTE AT;
I'd bet any other commands like the ALTER and CREATE ENDPOINT would work just as...
June 25, 2013 at 11:37 am
Viewing 15 posts - 3,226 through 3,240 (of 13,469 total)