Viewing 15 posts - 736 through 750 (of 812 total)
Also if you expecting the integer value to be return then why you creating your @..... as char type?
----------
Ashish
August 13, 2010 at 10:29 am
if its numeric then what do you mean by
Else 'July.F1007'.
not sure but could be the reason.
----------
Ashish
August 13, 2010 at 10:28 am
you can justify by giving the data like :-
1) how important your database performance and role fo tempdb in this.
2) performance comparison by putting the temdb log on another drive...
----------
Ashish
August 13, 2010 at 8:48 am
so whats stopping you to do this....
if account you want in sql then create sql account else windows account and give required permission to that specific account
----------
Ashish
August 13, 2010 at 8:40 am
FROM Sales where Sales.SERVICE = SERVICE.SERVICE or sales.service is null
OR if it different table then
FROM Sales where Sales.SERVICE = SERVICE.SERVICE or SERVICE.service is null
----------
Ashish
August 12, 2010 at 11:03 am
no problem....just bit more explanation with code what I was saying earlier...
in bat file
for /f %%G in (serverlist.txt) do sqlcmd -S %%G -E -i serverversions.sql
or if the...
----------
Ashish
August 12, 2010 at 10:56 am
my personal view.....
first check your database that which are the tables consuming most of the space. google it, you will find the query how to find the tables sort by...
----------
Ashish
August 12, 2010 at 10:17 am
try this:-
select convert(char(8),getdate(),102)
----------
Ashish
August 12, 2010 at 10:06 am
you can delete all the data by comparing to temp table and then as temptable have unique record you can import it back to original table
something like
select * from table...
----------
Ashish
August 12, 2010 at 10:03 am
once you get the serverlist in text file then you can use that to check server version and other details by running query which you will run on any specific...
----------
Ashish
August 12, 2010 at 9:28 am
i am not talking about replication monitor, i said activity monitor where you can see if any process is still running for replication
----------
Ashish
August 12, 2010 at 9:18 am
use master
go
drop database 'adv...dw'
----------
Ashish
August 12, 2010 at 9:04 am
check if dist.. database exist in system database or not?
If in sql server 2005 or higher, check activity monitor. Might get some clue what process still running
----------
Ashish
August 12, 2010 at 9:03 am
are you restoring with correct version...
what i mean is...
lets say if the backup was taken by litespeed and you trying to restore from management studio or by sql server restore...
----------
Ashish
August 12, 2010 at 8:58 am
open cmd and run
sqlcmd -L
if you want output of this in text file, lets say in c drive then :-
sqlcmd -L >c:\serverlist.txt
----------
Ashish
August 12, 2010 at 8:51 am
Viewing 15 posts - 736 through 750 (of 812 total)