Viewing 15 posts - 1,006 through 1,020 (of 1,253 total)
Hi
I have some hierarchial data that go to many levels (not 3 or 4 levels). Usually I keep them in a single table.
Iam using recursive CTE's for querying and...
"Keep Trying"
December 24, 2007 at 1:16 am
December 23, 2007 at 11:05 pm
Hi
I may be completely wrong here..
Could this have anything to do with table schema definitions ?
"Keep Trying"
December 23, 2007 at 10:43 pm
is ur SQL 2005 the default instance or is it a named instance ?
"Keep Trying"
December 23, 2007 at 10:34 pm
Roopa
You cannot use the standard RAISERROR statement in a function nor can u use the TRY...CATCH construct to throw a error.
How ever you can catch any error in the...
"Keep Trying"
December 23, 2007 at 10:30 pm
Do you have indexes on this table. Maybe they are getting reorganised by these updations.
"Keep Trying"
December 21, 2007 at 4:57 am
Hi
If you are creating logins from SSMS you check the checkbox which says "Enforce password policy".
If you are using a script use the CHECK_EXPIRATION option of the "Create login" statement.
"Keep Trying"
December 21, 2007 at 4:45 am
Hi
Going with single database is the better option. You can avoid porting/replication or any other methodology for keeping the 2 databases in sync. Also you can have reusabality of the...
"Keep Trying"
December 21, 2007 at 12:01 am
Hi
I dont think u need views or triggers. Procedure should do the trick. Procedures give much better control over things than triggers.
"Keep Trying"
December 19, 2007 at 1:50 am
Hi
From where will u get the data. R u porting from some other SQL db, or a text file or what?
Generall speaking insert the companies first and then insert one...
"Keep Trying"
December 18, 2007 at 12:21 am
Hi
Replication it is or u can use SSIS for doing data transfer if that is applicable in your situation. Iam assuming that since they are lookup tables data changes...
"Keep Trying"
December 17, 2007 at 10:06 pm
Hi
Using privot is a good idea. since the number of columns can change your pivot query can be a dynamic sql.
"Keep Trying"
December 17, 2007 at 9:54 pm
Hi
to drop a default value
ALTER TABLE tablename
DROP CONSTRAINT constraintname
constraint name is the name of the default constraint.
we cannot create a new not null column without having a...
"Keep Trying"
December 17, 2007 at 4:33 am
Viewing 15 posts - 1,006 through 1,020 (of 1,253 total)