Viewing 15 posts - 4,246 through 4,260 (of 6,401 total)
what is the error?
July 19, 2012 at 5:50 am
If the table is not in the result set of the two queries then the table doesnt exist.
Are you sure its a table and not a view?
If it is a...
July 19, 2012 at 4:30 am
My script does not put NULL in the columns it puts a 0
declare @table table (accountno nvarchar(10),trans char(2), amount int)
insert into @table values ('a1414141','Cr',12334),
('A64646','Dr',4500),
('E3636','Cr',900),
('R9494','Dr',8000)
SELECT
AccountNo,
CASE trans WHEN 'Cr' THEN 'Credit' WHEN...
July 19, 2012 at 4:06 am
Side by side, by either
1. A new server with the same instance name, then follow the steps on how to rename the host of a sql server to change it...
July 19, 2012 at 4:03 am
Based on the OP's first post on this here they dont have backup's, that is if its the same database in question.
July 19, 2012 at 3:52 am
I would do that as a side by side upgrade, but check that you are not using any enterprise only features first
SELECT feature_name, feature_id
FROM sys.dm_db_persisted_sku_features
...
July 19, 2012 at 3:50 am
The only way would be to disable the second processor in the BIOS or remove the processor from the server.
Changing affinity settings doesnt allow you to reduce the number of...
July 19, 2012 at 3:39 am
If you could please read the second link in my signature on posting code, data and expected results it will help us out greatly.
But based on what I think you...
July 19, 2012 at 3:37 am
I also read it as being Yes as the question didnt specify needing to delete or not delete the other snapshots, so in theory Yes I can revert to any...
July 19, 2012 at 2:54 am
Anyone know where you can purchase Innis & Gunn's by the case load?
Looked at the local cash and carries but they dont stock it.
July 19, 2012 at 2:19 am
Use UNC paths with admin shares as default (eg \\SERVER\D$\Folder) but this will require administrator access to the SQL Agent account
Or share the folder as \\SERVER\Folder but lock it down...
July 19, 2012 at 2:14 am
Side by side or in place upgrade?
Yes it is possible, but will depend on what you need to call the SQL server, downtime etc etc?
Is Express installed as a named...
July 19, 2012 at 2:09 am
Viewing 15 posts - 4,246 through 4,260 (of 6,401 total)