Forum Replies Created

Viewing 15 posts - 76 through 90 (of 112 total)

  • RE: need a push

    GSquared -

    thanks very much for the code and explaination. I'm out sick today so was kindo slow responding, but I wanted you to know that I really...

  • RE: need a push

    GSquared -

    yes, I'd already set up target tables to use more effecient types/sizes:

    CREATE TABLE [dbo].[Vehicle_Info](

    [Counter] [int] not null

    ,[Year] [nvarchar](5) null

    ,[Make] [nvarchar](20) null

    ,[License_State] [nvarchar](15) null

    ,[VIN] [nvarchar](20) null

    ,[Comments] [nvarchar](max) null

    ,[License_Plate] [nvarchar](30)...

  • RE: generate data dictionary

    excellent. Thanks Ron.

    I had looked at information_schema.TABLES, but missed the Information_Schema.Columns.

    here's how I'm going to use it:

    Select TABLE_NAME

    , COLUMN_NAME

    , DATA_TYPE

    , CHARACTER_MAXIMUM_LENGTH

    , IS_NULLABLE

    From Information_Schema.Columns

    ...

  • RE: Send parameters to SQL stored procedure

    just as an aside, I would use combo boxes on your search form. Populate them with a sql query that pulls values that are in your DB and limit them...

  • RE: Table Maintenace stored procedure

    by golly, that seems to have worked. I thought the go would force the drop to complete before moving on.

    THANKS!

  • RE: xp_cmdshell

    I've found that when I use a remote desktop connection to the server xp_cmdshell runs fine. When I use QA from my own workstation it doesn't. All other queries...

  • RE: What is Best Way to calculate presence time....

    I think he probably gave up because you still haven't filled the request for easily consumable create table statements and test data. When I looked at the file you...

  • RE: keywords in column names

    thanks again. The quoted identifiers setting sounds very likely to be the culprit.

    Obviously, I'm a fairly new reluctant DBA that's just transfered from applications.

    'preciate all help.

  • RE: keywords in column names

    ahhhh, thanks for that. I just tested single quotes and that also works. I'd already changed the sp (all 3157 lines of the beast) to use nulls.

    ...so... I'm...

  • RE: keywords in column names

    never mind. That wasn't the offending line, it was the two prior:

    Make ="",

    Model ="",

    didn't like empty string. Used 'null' instead and it works.

    Thanks

  • RE: keywords in column names

    that was my first thought.... didn't work, same errors

  • RE: Hidden or Unknown Job Perks

    I work for a State Police agency. I have access to their training academy gym and flexible schedule so that I can take a 1.5-2hr lunch to workout. I've...

  • RE: convert access query to sql server

    Since MS Access doesn't support views, it lets you call queries from queries. It's not uncommon to have query1 do some joins and manipulation, then use that result set...

  • RE: Security in Multiuser environment (Ms Access Project or Ms access database)

    On small scale, I've used something similar to dschubel, but I also used a bit field and bitmasks for access control. Makes a clean select case that doesn't have...

  • RE: Leanring from Experts

    I guess my first big ah-HA! moment was learning hot key functions - not leaving the keyboard seemed SO convenient vs. grabbing for the mouse.

    Now... the roofer in the graphic...

Viewing 15 posts - 76 through 90 (of 112 total)