Viewing 15 posts - 496 through 510 (of 545 total)
Try to figure out the Order of the tables vs constraints.
Drop the constraints
Change the Datatype and re-create the constraints.
Or Next Option will be using
ALTER TABLE
ALTER COLUMN [column_name] [new_data_type]
June 21, 2008 at 7:34 am
ok, this is one the approach. I had come across this myself.
Check to see if there are hypothetical indexes in Sql server. if there are Many hypothetical indexes, try deleting...
June 20, 2008 at 4:52 pm
Yes they are Partitioned Views then you need to supply all values required in table.
Something like this:
INSERT INTO vwDEMO
VALUES
(
''Mani1,
...
June 20, 2008 at 4:22 pm
Which service pack are you on with SQL Server 2005. and windows 2003
There is a OS terminal services Bug, that can cause this issue, have you checked that
June 20, 2008 at 2:35 pm
Check this Link: http://www.sqlservercentral.com/articles/Administration/clusteringreportingservices/2398/
June 20, 2008 at 2:27 pm
That error number pretains to something about transaction Log Error.
Run a dbcc checkdb(dbname)
June 20, 2008 at 11:02 am
Restore filelistonly from disk = 'Backup Location and name'
Get the Logical Names...
Then execute the Following
RESTORE DATABASE DATABASENAME from disk = 'Backup Location and Name'
WITH REPLACE,
MOVE 'Logical Data File...
June 20, 2008 at 10:52 am
did you try changing the cmptlevel to 90 and then do a backup and restore.. is it the same?
June 20, 2008 at 10:47 am
You got me here.. you are right...
so BOl is the right place...
June 20, 2008 at 9:36 am
yes you can.
Just do a : sp_msforeachdb @command1='USE [?] EXEC sp_change_users_login ''report'' '
to check for all orphaned logins on these boxes.
it is the SQL Login that gets Orphaned when you...
June 20, 2008 at 9:33 am
Try this:
Update PatientTable
Set Notes = NOTES + ' This is a new TEXT Message'
Where PatientId =
(Select PatientID From PatientVisitTable
Where TicketNumber = 9)
June 20, 2008 at 9:28 am
Check which protocol the ODBC connection uses.. in their DSN.
Double click on their DSN and goto the screen that has the "Client Configuration" button/link click on it to see what...
June 20, 2008 at 9:22 am
sp_msforeachdb @command1='USE ? DELETE from sysusers where name ='' '' '
something like this.. Or use Cursor to scroll through each DBNAMe and Delete the user in the Database...(each DB).
Declare...
June 20, 2008 at 9:15 am
What is the Authentication Method (SQL or BOTH(SQL/NT)
Also Enable both Named Pipes and TCPIP on the Server.
When you open SQL Server Management Studio.
It Open a Dialogbox to "connect to Server"...
June 20, 2008 at 9:08 am
How many Filegroups and how many file in each Filegroup you have for this DB.
June 20, 2008 at 8:48 am
Viewing 15 posts - 496 through 510 (of 545 total)