Viewing 15 posts - 46 through 60 (of 639 total)
January 30, 2017 at 9:33 pm
Our SQL Server is in Pacific
Our Time Recording system is in GMT
For each timezone, I need to run a report at 10:00 in the employee timezone or it could be...
January 11, 2014 at 4:41 pm
All other tables are the defaults, not set to 850
May 3, 2013 at 7:14 am
Would the temp table not be collate at 850 so i dont have to change my update code aswell.
May 3, 2013 at 7:13 am
Thanks - I forgot about the unsupport of the version and will pass it along to our developer that the tool is not supported and also try to just install...
November 8, 2011 at 7:33 am
How about sql replication? or if on a san talk to your san guys they can replicate the data from san side.
September 17, 2011 at 6:07 pm
Keep your data separate and then another database called test_custom_db with all your views etc and sp..your data stored in test_db then your data can be updated from production...but then...
September 17, 2011 at 6:02 pm
Didn't think about having the SYNONYM on the SQL02 and the databases on SQL01. That makes sense.
Now i can do the SELECT * FROM TABLE....
All works just as I...
August 28, 2011 at 2:47 pm
Don't suppose you know how to see SYNONYMS in a linked server.
I have SYNONYMS set up on server b and on server a set the user with view definition of...
August 28, 2011 at 9:37 am
This is what I did
SQL 01
DATABASEA
CUST.ORDERS
DATABASEB
CUST.ORDERS
CREATE SYNONYM [DBO].[ORDERS] FOR [DATABASEA].[CUST].[ORDERS]
CREATE SYNONYM [DBO].[ORDERS] FOR [DATABASEB].[CUST].[ORDERS]
SQL 02
---SET UP THE LINKED SERVER called...
August 27, 2011 at 8:19 pm
If it takes that amount of space and there more than one statement in a sp then issue a backup statement in between to backup the log provided you got...
July 30, 2011 at 7:58 pm
Viewing 15 posts - 46 through 60 (of 639 total)