Viewing 15 posts - 61 through 75 (of 113 total)
September 19, 2003 at 2:51 am
hi yogiberr!
the thing you're talking about is named "database dictionary" (take a look at BOL). for a glance of what information is "hidden" there, look at
http://www.sqlservercentral.com/scripts/contributions/246.asp
regards,
chris.
September 19, 2003 at 2:38 am
hi!
have to add something to andy's posting: changes to stored procedures are not replicated withing merge replication, but within transactional replication (sql server 2000).
best regards,
chris.
September 18, 2003 at 2:41 am
hi!
it is possible (limitations already posted), but you should just avoid it due to performance reasons! you see, T-SQL is a very limited language and just not built for complex...
September 17, 2003 at 4:48 am
hi!
did something similar for a sort of corporate directory application and used a desigen quite common in OOP: put up a master table for all different sort of "contacts" containing...
September 17, 2003 at 4:43 am
btw:
for nt4 (if you're still using it) there's no graphical "task scheduler", but a service and a command line statement called "at" ... schedules just fine once you're used to...
September 16, 2003 at 4:02 am
look at
http://www.sqlservercentral.com/scripts/contributions/246.asp
select statements 4, 5, 7 of the script will give you all primary keys, unique keys and other indexes alongside with their respective fields.
best regards,
chris.
September 8, 2003 at 4:31 am
hi!
you can check the state of ADO connections/recordsets/commands to see what ADO does if you executed a statement asynchronously (this usually requires the adAsyncExecute constant to be used, eg. in...
August 29, 2003 at 4:09 am
hi!
you might want to have a look at
http://www.sqlservercentral.com/scripts/contributions/246.asp
to get comprehensive information ...
best regards,
chris.
August 27, 2003 at 4:06 am
hi!
sorry, but why *the hell* are you doing this? if you want to import data, why not use DTS? sorry if i got you wrong completely and didn't understand your...
August 27, 2003 at 3:46 am
hi!
read carefully: "table" is a reserved word ... "table1" isn't! 😉
best regards,
chris.
August 25, 2003 at 5:41 am
hi!
this looks like a timeout or something similar within the NETx subsystem of oracle.
1st step: get your oracle handbook and check the ORA-xxxxx numbers of your errors! could have something...
August 25, 2003 at 5:39 am
Just wanted to add something regarding recompilation of stored procedures:
If your data changes heavily and you've got a lot of rows, recreating statistics could change your access plan. In that...
August 19, 2003 at 3:18 am
hi!
ADO is showing a quite strange behavior sometimes when it comes to reserved words of the target DBMS.
To avoid any problems like these use something like:
SELECT id, price AS item_price...
August 19, 2003 at 3:15 am
Viewing 15 posts - 61 through 75 (of 113 total)