Viewing 15 posts - 76 through 90 (of 223 total)
How about some sample data. Please see my first link in the signature below.
January 18, 2010 at 4:37 am
This should work:
SELECT convert(varchar,dateadd(m, 1, getdate()),103) + ' ' + convert(varchar,dateadd(m, 1, getdate()),114)
January 13, 2010 at 3:21 am
Please ensure that you are using .BAK or .TRN for the extension instead of just BAK or TRN.
January 12, 2010 at 2:39 am
Please post some sample data with create and insert statements.. Please look at my first link on the signature.
January 8, 2010 at 3:18 am
How are you connecting. Windows or SQL authentication.. Does the user have relevant permissions?
January 8, 2010 at 1:30 am
How do i find the indexes in a database
rather than using sp_helpindex for each table
You can do something like this:
select so.name as tablename,si.name as indexname from sys.indexes si
inner join...
January 7, 2010 at 9:27 am
What port is 2005 instance running on.
By default 2000 uses 1433. Make sure they are different. You can't have the same port.
January 7, 2010 at 7:45 am
Could you please confirm the following:
1. SQL Browser service is running on the server.
2. On the firewall put the exception for sqlbrowser.exe and/or UDP port 1433.
3. Can you get to...
January 7, 2010 at 4:35 am
When you go SQL Server properties; is there a tick against Allow other SQL Servers to connect remotely to this SQL Server using RPC.
January 7, 2010 at 3:12 am
This should work:
select * from sys.database_principals
January 6, 2010 at 3:48 am
Personally i would use the DATE function which is a new thing in SQL 2008 and is much easier. If i was using 2005 then i would use convert.
December 31, 2009 at 9:24 am
Viewing 15 posts - 76 through 90 (of 223 total)